(subparsers)
| 986 | |
| 987 | |
| 988 | def initialize_drpc_subcommand(subparsers): |
| 989 | command_help = """ |
| 990 | Launches a DRPC daemon. This command should be run under supervision |
| 991 | with a tool like daemontools or monit. |
| 992 | |
| 993 | See Distributed RPC for more information. |
| 994 | (https://storm.apache.org/documentation/Distributed-RPC) |
| 995 | """ |
| 996 | sub_parser = subparsers.add_parser("drpc", help=command_help, formatter_class=SortingHelpFormatter) |
| 997 | sub_parser.set_defaults(func=drpc) |
| 998 | add_common_options(sub_parser) |
| 999 | |
| 1000 | |
| 1001 | def initialize_dev_zookeeper_subcommand(subparsers): |
no test coverage detected