From 6f734e4aa938dccdc1c79e782908a0d1164ee526 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Wed, 1 Jul 2009 13:47:04 +0000 Subject: Fix members joining cluster while cluster is handling client errors. Previously cluster members could abort if a new member joins while existing members are handling a client error. Now if an update offer arrives while an error is in progress, the offering broker retracts the offer and the newcomer must try again. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@790163 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/tests/qpid_ping.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cpp/src/tests/qpid_ping.cpp') diff --git a/cpp/src/tests/qpid_ping.cpp b/cpp/src/tests/qpid_ping.cpp index ddd70515be..cc07ade7bb 100644 --- a/cpp/src/tests/qpid_ping.cpp +++ b/cpp/src/tests/qpid_ping.cpp @@ -23,7 +23,7 @@ #include "TestOptions.h" #include "qpid/client/SubscriptionManager.h" #include "qpid/client/Connection.h" -#include "qpid/client/Session.h" +#include "qpid/client/AsyncSession.h" #include "qpid/sys/Time.h" #include "qpid/sys/Thread.h" #include "qpid/sys/Runnable.h" @@ -63,7 +63,7 @@ class Ping : public Runnable { try { opts.open(connection); if (!opts.quiet) cout << "Opened connection." << endl; - Session s = connection.newSession(); + AsyncSession s = connection.newSession(); string qname(Uuid(true).str()); s.queueDeclare(arg::queue=qname,arg::autoDelete=true,arg::exclusive=true); s.messageTransfer(arg::content=Message("hello", qname)); @@ -71,6 +71,7 @@ class Ping : public Runnable { SubscriptionManager subs(s); subs.get(qname); if (!opts.quiet) cout << "Received message." << endl; + s.sync(); s.close(); connection.close(); Mutex::ScopedLock l(lock); -- cgit v1.2.1