From 53c01aa2992c8f86ba404979a561fe6c7f261d0e Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Mon, 13 Jun 2022 14:18:54 -0700 Subject: [PATCH] check-rabbitmq-consumers: Remove --queue argument from help. This has not been accepted since 88a123d5e060846ac2a87f7a8380d470ac4a2570. --- scripts/nagios/check-rabbitmq-consumers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nagios/check-rabbitmq-consumers b/scripts/nagios/check-rabbitmq-consumers index ed0e42b156..08636c8679 100755 --- a/scripts/nagios/check-rabbitmq-consumers +++ b/scripts/nagios/check-rabbitmq-consumers @@ -23,7 +23,7 @@ if "USER" in os.environ and not os.environ["USER"] in ["root", "rabbitmq"]: print("This script must be run as the root or rabbitmq user") -usage = """Usage: check-rabbitmq-consumers --queue=[queue-name] --min-threshold=[min-threshold]""" +usage = """Usage: check-rabbitmq-consumers --min-threshold=[min-threshold]""" parser = argparse.ArgumentParser(usage=usage) parser.add_argument("--min-threshold", dest="min_count", type=int, default=1)