summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Robie <jonathan@apache.org>2011-04-01 13:42:20 +0000
committerJonathan Robie <jonathan@apache.org>2011-04-01 13:42:20 +0000
commitf182259b5f1cb91aaf7fb5b6d4323758551f4291 (patch)
treed5507a597bd03275227f6139f50cb5b4cb224cb6
parentafc8efa8d43810a4efb2fbcab560279dbeeab0a9 (diff)
downloadqpid-python-f182259b5f1cb91aaf7fb5b6d4323758551f4291.tar.gz
Corrected help text for --max-queue-size, --max-queue-count
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1087706 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-xtools/src/py/qpid-config4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/src/py/qpid-config b/tools/src/py/qpid-config
index da490e831a..1c66d535b2 100755
--- a/tools/src/py/qpid-config
+++ b/tools/src/py/qpid-config
@@ -173,8 +173,8 @@ def OptionsAndArguments(argv):
group3.add_option("--cluster-durable", action="store_true", help="The new queue becomes durable if there is only one functioning cluster node")
group3.add_option("--file-count", action="store", type="int", default=8, metavar="<n>", help="Number of files in queue's persistence journal")
group3.add_option("--file-size", action="store", type="int", default=24, metavar="<n>", help="File size in pages (64Kib/page)")
- group3.add_option("--max-queue-size", action="store", type="int", metavar="<n>", help="Number of files in queue's persistence journal")
- group3.add_option("--max-queue-count", action="store", type="int", metavar="<n>", help="Number of files in queue's persistence journal")
+ group3.add_option("--max-queue-size", action="store", type="int", metavar="<n>", help="Maximum in-memory queue size as bytes")
+ group3.add_option("--max-queue-count", action="store", type="int", metavar="<n>", help="Maximum in-memory queue size as a number of messages")
group3.add_option("--limit-policy", action="store", choices=["none", "reject", "flow-to-disk", "ring", "ring-strict"], metavar="<policy>", help="Action to take when queue limit is reached")
group3.add_option("--order", action="store", choices=["fifo", "lvq", "lvq-no-browse"], metavar="<ordering>", help="Queue ordering policy")
group3.add_option("--generate-queue-events", action="store", type="int", metavar="<n>", help="If set to 1, every enqueue will generate an event that can be processed by registered listeners (e.g. for replication). If set to 2, events will be generated for enqueues and dequeues.")