summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2010-06-04 15:39:01 +0000
committerAlan Conway <aconway@apache.org>2010-06-04 15:39:01 +0000
commit888a7d9b4d896314a4515dfb0c9f172b87e0a1cd (patch)
treec9cf721000749a9faed1bd7b2d920b55d3b14fd6 /qpid/cpp
parent4424bc7676367fef809d0de1fb720c1c50c6bd08 (diff)
downloadqpid-python-888a7d9b4d896314a4515dfb0c9f172b87e0a1cd.tar.gz
Fixed sporadic failure of cluster_tests.py sasl_test
- added missing initializer for cluster::Connection::inConnectionNegotiation - brokertest.py: fixed formatting of log excerpt in exceptions. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@951452 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/cluster/Connection.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/cluster/Connection.cpp b/qpid/cpp/src/qpid/cluster/Connection.cpp
index 43a47930fd..9a8cab24a6 100644
--- a/qpid/cpp/src/qpid/cluster/Connection.cpp
+++ b/qpid/cpp/src/qpid/cluster/Connection.cpp
@@ -108,7 +108,8 @@ Connection::Connection(Cluster& c, sys::ConnectionOutputHandler& out,
mcastFrameHandler(cluster.getMulticast(), self),
updateIn(c.getUpdateReceiver()),
secureConnection(0),
- mcastSentButNotReceived(false)
+ mcastSentButNotReceived(false),
+ inConnectionNegotiation(true)
{
cluster.addLocalConnection(this);
if (isLocalClient()) {