check-rabbitmq-consumers: Remove --queue argument from help.

This has not been accepted since 88a123d5e0.
This commit is contained in:
Alex Vandiver 2022-06-13 14:18:54 -07:00 committed by Alex Vandiver
parent 91379fd67e
commit 53c01aa299
1 changed files with 1 additions and 1 deletions

View File

@ -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)