Author: aconway Date: Thu Jan 29 16:02:44 2009 New Revision: 738906 URL: http://svn.apache.org/viewvc?rev=738906&view=rev Log: Changed --cluster-read-max default to 3 based on experiments.
Modified: qpid/trunk/qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp Modified: qpid/trunk/qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp?rev=738906&r1=738905&r2=738906&view=diff ============================================================================== --- qpid/trunk/qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp (original) +++ qpid/trunk/qpid/cpp/src/qpid/cluster/ClusterPlugin.cpp Thu Jan 29 16:02:44 2009 @@ -54,7 +54,7 @@ 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); --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:commits-subscr...@qpid.apache.org