(subparsers)
| 928 | |
| 929 | |
| 930 | def 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 | |
| 942 | def initialize_ui_subcommand(subparsers): |
| 943 | command_help = """ |
no test coverage detected