summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-01-29 16:02:44 +0000
committerAlan Conway <aconway@apache.org>2009-01-29 16:02:44 +0000
commitadfa9a92e3549e8869b802c2eb930d8954c23767 (patch)
tree726f899cd8873cee341dc75af674af486995cb55 /qpid/cpp
parent55dd7cc92e99e1f91956d09b1772fe00e5958c62 (diff)
downloadqpid-python-adfa9a92e3549e8869b802c2eb930d8954c23767.tar.gz
Changed --cluster-read-max default to 3 based on experiments.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@738906 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp b/qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp
index f523317f68..1c15747c77 100644
--- a/qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp
+++ b/qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp
@@ -54,7 +54,7 @@ struct ClusterValues {
bool quorum;
size_t readMax, writeEstimate;
- ClusterValues() : quorum(false), readMax(10), writeEstimate(64) {}
+ ClusterValues() : quorum(false), readMax(3), writeEstimate(64) {}
Url getUrl(uint16_t port) const {
if (url.empty()) return Url::getIpAddressesUrl(port);