From f95470cacb910af18a29895f7d4f817d70c61e79 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 13 Jan 2011 17:04:10 +0000 Subject: 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 --- cpp/src/qpid/cluster/UpdateClient.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cpp/src/qpid/cluster/UpdateClient.cpp') 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 { -- cgit v1.2.1