diff options
| author | Alan Conway <aconway@apache.org> | 2012-09-19 21:42:21 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2012-09-19 21:42:21 +0000 |
| commit | d93c6dc515fe2c91a0b27dd7b96d875c4f61cb50 (patch) | |
| tree | 66c570fe1663016cda22ccb40da00a6ac28c8cb0 /cpp/src/qpid/broker/Link.cpp | |
| parent | 2ee25721a9eb496d21c0746d24c0542ec4ca051c (diff) | |
| download | qpid-python-d93c6dc515fe2c91a0b27dd7b96d875c4f61cb50.tar.gz | |
QPID-4322: HA sporadic failure in ha_tests
Added Queue::getRange to get range atomically, fixes races around getting
the front and backup of the range as two separate operations.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1387785 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Link.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/Link.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Link.cpp b/cpp/src/qpid/broker/Link.cpp index 6479e47799..afa5623ecd 100644 --- a/cpp/src/qpid/broker/Link.cpp +++ b/cpp/src/qpid/broker/Link.cpp @@ -230,7 +230,7 @@ void Link::startConnectionLH () setStateLH(STATE_CONNECTING); broker->connect (host, boost::lexical_cast<std::string>(port), transport, boost::bind (&Link::closed, this, _1, _2)); - QPID_LOG (debug, "Inter-broker link connecting to " << host << ":" << port); + QPID_LOG (info, "Inter-broker link connecting to " << host << ":" << port); } catch(const std::exception& e) { QPID_LOG(error, "Link connection to " << host << ":" << port << " failed: " << e.what()); |
