summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-03-10 15:46:09 +0000
committerAlan Conway <aconway@apache.org>2009-03-10 15:46:09 +0000
commitf16dd471baba1e3c531aac2430e9836b96ff4df7 (patch)
treec4897b936ebe5770bf1191373e68f06161b6ed87
parent6d961b0d4abb3763b06be58015dd0721e443c6a0 (diff)
downloadqpid-python-f16dd471baba1e3c531aac2430e9836b96ff4df7.tar.gz
Cluster authentication settings default to empty.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@752146 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/cluster/ClusterSettings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/cluster/ClusterSettings.h b/qpid/cpp/src/qpid/cluster/ClusterSettings.h
index a8f33be75e..88e8829dfe 100644
--- a/qpid/cpp/src/qpid/cluster/ClusterSettings.h
+++ b/qpid/cpp/src/qpid/cluster/ClusterSettings.h
@@ -35,7 +35,7 @@ struct ClusterSettings {
size_t readMax, writeEstimate;
std::string username, password, mechanism;
- ClusterSettings() : quorum(false), readMax(10), writeEstimate(64), username("guest"), password("guest") {}
+ ClusterSettings() : quorum(false), readMax(10), writeEstimate(64) {}
Url getUrl(uint16_t port) const {
if (url.empty()) return Url::getIpAddressesUrl(port);