MCPcopy Create free account
hub / github.com/apache/storm / initialize_dev_zookeeper_subcommand

Function initialize_dev_zookeeper_subcommand

bin/storm.py:1001–1009  ·  view source on GitHub ↗
(subparsers)

Source from the content-addressed store, hash-verified

999
1000
1001def initialize_dev_zookeeper_subcommand(subparsers):
1002 command_help = """
1003 Launches a fresh Zookeeper server using "dev.zookeeper.path" as its local dir and
1004 "storm.zookeeper.port" as its port. This is only intended for development/testing, the
1005 Zookeeper instance launched is not configured to be used in production.
1006 """
1007 sub_parser = subparsers.add_parser("dev-zookeeper", help=command_help, formatter_class=SortingHelpFormatter)
1008 sub_parser.set_defaults(func=dev_zookeeper)
1009 add_common_options(sub_parser)
1010
1011
1012def initialize_version_subcommand(subparsers):

Callers 1

initialize_main_commandFunction · 0.85

Calls 1

add_common_optionsFunction · 0.85

Tested by

no test coverage detected