(subparsers)
| 1024 | |
| 1025 | |
| 1026 | def initialize_server_classpath_subcommand(subparsers): |
| 1027 | command_help = """Prints the classpath used by the storm servers when running commands.""" |
| 1028 | sub_parser = subparsers.add_parser("server_classpath", help=command_help, formatter_class=SortingHelpFormatter) |
| 1029 | sub_parser.set_defaults(func=print_server_classpath) |
| 1030 | add_common_options(sub_parser) |
| 1031 | |
| 1032 | |
| 1033 | def initialize_monitor_subcommand(subparsers): |
no test coverage detected