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

Function initialize_nimbus_subcommand

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

Source from the content-addressed store, hash-verified

902
903
904def initialize_nimbus_subcommand(subparsers):
905 command_help = """
906 Launches the nimbus daemon. This command should be run under
907 supervision with a tool like daemontools or monit.
908
909 See Setting up a Storm cluster for more information.
910 (https://storm.apache.org/documentation/Setting-up-a-Storm-cluster)
911 """
912 sub_parser = subparsers.add_parser("nimbus", help=command_help, formatter_class=SortingHelpFormatter)
913 sub_parser.set_defaults(func=nimbus)
914 add_common_options(sub_parser)
915
916
917def initialize_pacemaker_subcommand(subparsers):

Callers 1

initialize_main_commandFunction · 0.85

Calls 1

add_common_optionsFunction · 0.85

Tested by

no test coverage detected