(subparsers)
| 915 | |
| 916 | |
| 917 | def initialize_pacemaker_subcommand(subparsers): |
| 918 | command_help = """ |
| 919 | Launches the Pacemaker daemon. This command should be run under |
| 920 | supervision with a tool like daemontools or monit. |
| 921 | |
| 922 | See Setting up a Storm cluster for more information. |
| 923 | (https://storm.apache.org/documentation/Setting-up-a-Storm-cluster) |
| 924 | """ |
| 925 | sub_parser = subparsers.add_parser("pacemaker", help=command_help, formatter_class=SortingHelpFormatter) |
| 926 | sub_parser.set_defaults(func=pacemaker) |
| 927 | add_common_options(sub_parser) |
| 928 | |
| 929 | |
| 930 | def initialize_supervisor_subcommand(subparsers): |
no test coverage detected