diff options
| author | Ted Ross <tross@apache.org> | 2011-08-24 15:20:34 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2011-08-24 15:20:34 +0000 |
| commit | 3e1a552845f6b8cca53d5d679a29e69f98445b56 (patch) | |
| tree | 0cbdb72c585731d32107dc5f6a2b99972ef7111b | |
| parent | 56b16808dd8405c619037b46c540041c7af8e539 (diff) | |
| download | qpid-python-3e1a552845f6b8cca53d5d679a29e69f98445b56.tar.gz | |
QPID-3419 - qpid-config --file-size parameter's help text uses incorrect units
Applied patch from Paul Colby
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1161149 13f79535-47bb-0310-9956-ffa450edef68
| -rwxr-xr-x | qpid/tools/src/py/qpid-config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/tools/src/py/qpid-config b/qpid/tools/src/py/qpid-config index b6eb0558cb..3430eb6469 100755 --- a/qpid/tools/src/py/qpid-config +++ b/qpid/tools/src/py/qpid-config @@ -172,7 +172,7 @@ def OptionsAndArguments(argv): group3 = OptionGroup(parser, "Options for Adding Queues") 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("--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="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") |
