diff options
| author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-03-24 18:34:13 +0000 |
|---|---|---|
| committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-03-24 18:34:13 +0000 |
| commit | ab2266a2f7c030b472b54a5eb293ef706791b08d (patch) | |
| tree | 48b205021aee8133248cfde3d2a4014aedf58358 /qpid/cpp/src | |
| parent | 86d8a73973f6c47fcfdf2005e7cf070d8b479124 (diff) | |
| download | qpid-python-ab2266a2f7c030b472b54a5eb293ef706791b08d.tar.gz | |
QPID-3168: fix queue flow control --help text
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1085065 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/broker/Broker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/broker/Broker.cpp b/qpid/cpp/src/qpid/broker/Broker.cpp index 5d13e6cfdd..764da735e3 100644 --- a/qpid/cpp/src/qpid/broker/Broker.cpp +++ b/qpid/cpp/src/qpid/broker/Broker.cpp @@ -156,8 +156,8 @@ Broker::Options::Options(const std::string& name) : ("sasl-config", optValue(saslConfigPath, "DIR"), "gets sasl config info from nonstandard location") ("max-session-rate", optValue(maxSessionRate, "MESSAGES/S"), "Sets the maximum message rate per session (0=unlimited)") ("async-queue-events", optValue(asyncQueueEvents, "yes|no"), "Set Queue Events async, used for services like replication") - ("default-flow-stop-threshold", optValue(queueFlowStopRatio, "%MESSAGES"), "Queue capacity level at which flow control is activated.") - ("default-flow-resume-threshold", optValue(queueFlowResumeRatio, "%MESSAGES"), "Queue capacity level at which flow control is de-activated.") + ("default-flow-stop-threshold", optValue(queueFlowStopRatio, "PERCENT"), "Percent of queue's maximum capacity at which flow control is activated.") + ("default-flow-resume-threshold", optValue(queueFlowResumeRatio, "PERCENT"), "Percent of queue's maximum capacity at which flow control is de-activated.") ("default-event-threshold-ratio", optValue(queueThresholdEventRatio, "%age of limit"), "The ratio of any specified queue limit at which an event will be raised"); } |
