diff options
author | Alan Conway <aconway@apache.org> | 2009-03-10 15:46:09 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-03-10 15:46:09 +0000 |
commit | d70fb55a5908b29eb10f052a19a61bc4821a0321 (patch) | |
tree | f7a54e0bdbb774da2898fa50e059768b5953d732 /cpp | |
parent | cda11dfed2db443a75558c41e30f24de25da0c42 (diff) | |
download | qpid-python-d70fb55a5908b29eb10f052a19a61bc4821a0321.tar.gz |
Cluster authentication settings default to empty.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@752146 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qpid/cluster/ClusterSettings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/ClusterSettings.h b/cpp/src/qpid/cluster/ClusterSettings.h index a8f33be75e..88e8829dfe 100644 --- a/cpp/src/qpid/cluster/ClusterSettings.h +++ b/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); |