(subparsers)
| 902 | |
| 903 | |
| 904 | def 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 | |
| 917 | def initialize_pacemaker_subcommand(subparsers): |
no test coverage detected