diff options
| author | Gordon Sim <gsim@apache.org> | 2009-06-05 17:39:07 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2009-06-05 17:39:07 +0000 |
| commit | 262dc4f141a94094827b7ccef18c2d210c710f97 (patch) | |
| tree | 670ccaf4ffd6308edf3321ce9c44f91090027cff /qpid/cpp/src/tests/BrokerFixture.h | |
| parent | cf08370085e71331c31adc6c51752b0de655e1a2 (diff) | |
| download | qpid-python-262dc4f141a94094827b7ccef18c2d210c710f97.tar.gz | |
Further fix to new cluster member state transfer to fix a case where unacked messages on ring policy queue cause inconsistencies in queue state between nodes.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@782075 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/BrokerFixture.h')
| -rw-r--r-- | qpid/cpp/src/tests/BrokerFixture.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/BrokerFixture.h b/qpid/cpp/src/tests/BrokerFixture.h index c691e351e7..397045d00b 100644 --- a/qpid/cpp/src/tests/BrokerFixture.h +++ b/qpid/cpp/src/tests/BrokerFixture.h @@ -123,6 +123,7 @@ struct ClientT { : connection(settings), session(connection.newSession(name_)), subs(session), name(name_) {} ~ClientT() { connection.close(); } + void close() { session.close(); connection.close(); } }; typedef ClientT<> Client; |
