diff options
author | Alan Conway <aconway@apache.org> | 2010-06-04 15:39:01 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-06-04 15:39:01 +0000 |
commit | 6396cbe14c6fdec35ceaa0fa697541ec7da62358 (patch) | |
tree | bb521f1243ccdd6b7e5d69ef676f390a387de9ca /cpp/src | |
parent | fdbf2377d6604a9c78764f213e86d49db6b29a8a (diff) | |
download | qpid-python-6396cbe14c6fdec35ceaa0fa697541ec7da62358.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/qpid@951452 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/cluster/Connection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Connection.cpp b/cpp/src/qpid/cluster/Connection.cpp index 43a47930fd..9a8cab24a6 100644 --- a/cpp/src/qpid/cluster/Connection.cpp +++ b/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()) { |