diff options
| author | Alan Conway <aconway@apache.org> | 2009-01-29 16:02:44 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2009-01-29 16:02:44 +0000 |
| commit | a87557a9083d558251e9a6ac4f1b544797f41429 (patch) | |
| tree | b1ad17daa7f74b906d066e5f267783c0316f6345 /cpp/src | |
| parent | 3a6b6fb3275a8be3255328829595b4862014c9b6 (diff) | |
| download | qpid-python-a87557a9083d558251e9a6ac4f1b544797f41429.tar.gz | |
Changed --cluster-read-max default to 3 based on experiments.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@738906 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/cluster/ClusterPlugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/ClusterPlugin.cpp b/cpp/src/qpid/cluster/ClusterPlugin.cpp index f523317f68..1c15747c77 100644 --- a/cpp/src/qpid/cluster/ClusterPlugin.cpp +++ b/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); |
