(subparsers)
| 891 | |
| 892 | |
| 893 | def initialize_repl_subcommand(subparsers): |
| 894 | command_help = """ |
| 895 | DEPRECATED: This subcommand may be removed in a future release. |
| 896 | Opens up a Clojure REPL with the storm jars and configuration |
| 897 | on the classpath. Useful for debugging.""" |
| 898 | sub_parser = subparsers.add_parser("repl", help=command_help, formatter_class=SortingHelpFormatter) |
| 899 | |
| 900 | sub_parser.set_defaults(func=repl) |
| 901 | add_common_options(sub_parser) |
| 902 | |
| 903 | |
| 904 | def initialize_nimbus_subcommand(subparsers): |
no test coverage detected