(subparsers)
| 796 | |
| 797 | |
| 798 | def initialize_healthcheck_subcommand(subparsers): |
| 799 | sub_parser = subparsers.add_parser( |
| 800 | "node-health-check", help="""Run health checks on the local supervisor.""", formatter_class=SortingHelpFormatter |
| 801 | ) |
| 802 | |
| 803 | sub_parser.set_defaults(func=healthcheck) |
| 804 | add_common_options(sub_parser) |
| 805 | |
| 806 | |
| 807 | def initialize_kill_workers_subcommand(subparsers): |
no test coverage detected