From c868a418a171854a4a2fd4c9eed6d45d886bf379 Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: Apr 06 2020 13:23:54 +0000 Subject: Issue 50545 - remove dbmon "incr" option from arg parser Description: Forgot to remove the "incr" option for dbmon from the argparse list Relates: https://pagure.io/389-ds-base/issue/50545 Reviewed by: mreynolds (one line commit rule) --- diff --git a/src/lib389/lib389/cli_conf/monitor.py b/src/lib389/lib389/cli_conf/monitor.py index e136cf9..de4231d 100644 --- a/src/lib389/lib389/cli_conf/monitor.py +++ b/src/lib389/lib389/cli_conf/monitor.py @@ -295,7 +295,6 @@ def create_parser(subparsers): dbmon_parser = subcommands.add_parser('dbmon', help="Monitor the all the database statistics in a single report") dbmon_parser.set_defaults(func=db_monitor) - dbmon_parser.add_argument('-i', '--incr', type=int, help="Keep refreshing the report every N seconds") dbmon_parser.add_argument('-b', '--backends', help="List of space separated backends to monitor. Default is all backends.") dbmon_parser.add_argument('-x', '--indexes', action='store_true', default=False, help="Show index stats for each backend")