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

Function initialize_supervisor_subcommand

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

Source from the content-addressed store, hash-verified

928
929
930def initialize_supervisor_subcommand(subparsers):
931 command_help = """
932 Launches the supervisor daemon. This command should be run
933 under supervision with a tool like daemontools or monit.
934
935 See Setting up a Storm cluster for more information.
936 (https://storm.apache.org/documentation/Setting-up-a-Storm-cluster)
937 """
938 sub_parser = subparsers.add_parser("supervisor", help=command_help, formatter_class=SortingHelpFormatter)
939 sub_parser.set_defaults(func=supervisor)
940 add_common_options(sub_parser)
941
942def initialize_ui_subcommand(subparsers):
943 command_help = """

Callers 1

initialize_main_commandFunction · 0.85

Calls 1

add_common_optionsFunction · 0.85

Tested by

no test coverage detected