diff options
| author | Alan Conway <aconway@apache.org> | 2011-01-13 17:04:10 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2011-01-13 17:04:10 +0000 |
| commit | f95470cacb910af18a29895f7d4f817d70c61e79 (patch) | |
| tree | 142648af685cfd638149f727786c247ac8c8f3e1 /cpp/src/qpid/cluster | |
| parent | 17f625e00d2f8e4a3a68cd709d96effde522a580 (diff) | |
| download | qpid-python-f95470cacb910af18a29895f7d4f817d70c61e79.tar.gz | |
QPID-2982: Fix discrepancy in management object and deleted object counts.
cluster_tests.test_management was showing discrepancy in management
object and deleted object count after a new member update.
In ManagementAgent.cpp, code to move deleted objects into
pendingDeletedObjs was duplicated in 2 places.
Moved duplicated code into a function moveDeletedObjectsLH()
Call moveDeletedObjectsLH from clusterUpdate to correct discrepancy in
object count around update.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1058664 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster')
| -rw-r--r-- | cpp/src/qpid/cluster/UpdateClient.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/qpid/cluster/UpdateClient.cpp b/cpp/src/qpid/cluster/UpdateClient.cpp index 6b324be4c5..59db4de526 100644 --- a/cpp/src/qpid/cluster/UpdateClient.cpp +++ b/cpp/src/qpid/cluster/UpdateClient.cpp @@ -188,8 +188,7 @@ void UpdateClient::update() { // sys::usleep(10*1000); - QPID_LOG(debug, *this << " update completed to " << updateeId - << " at " << updateeUrl << ": " << membership); + QPID_LOG(debug, *this << " update completed to " << updateeId << " at " << updateeUrl); } namespace { |
