From 68d06cb9f5f10f3679ae1fc3c7bde86881862c38 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Mon, 31 May 2010 15:14:54 +0000 Subject: Fixed assertion error in cluster_tests.py test_failover. Added missing call to expandd in cluster/RetractClient.cpp git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@949767 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/cluster/RetractClient.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'cpp/src/qpid/cluster/RetractClient.cpp') diff --git a/cpp/src/qpid/cluster/RetractClient.cpp b/cpp/src/qpid/cluster/RetractClient.cpp index 7d9f52fc39..a8c4b0d543 100644 --- a/cpp/src/qpid/cluster/RetractClient.cpp +++ b/cpp/src/qpid/cluster/RetractClient.cpp @@ -52,6 +52,7 @@ void RetractClient::run() { c.open(url, connectionSettings); AutoClose ac(c); AMQFrame retract((ClusterConnectionRetractOfferBody())); + client::ConnectionAccess::getImpl(c)->expand(retract.encodedSize(), false); client::ConnectionAccess::getImpl(c)->handle(retract); } catch (const std::exception& e) { QPID_LOG(error, " while retracting retract to " << url << ": " << e.what()); -- cgit v1.2.1