diff options
| author | Gordon Sim <gsim@apache.org> | 2014-08-22 11:18:26 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2014-08-22 11:18:26 +0000 |
| commit | 6f868022134a9e614074742582eb281c86d10bf2 (patch) | |
| tree | 3ed150600f37687e4ac7dfe50488725c3b7a285f /qpid/cpp/src | |
| parent | d43f53947b18eee53cb57064d536475d7492cdd0 (diff) | |
| download | qpid-python-6f868022134a9e614074742582eb281c86d10bf2.tar.gz | |
QPID-6032: throw aborted error before reconnect attempt when a transactional session discovers transport failure
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1619745 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp b/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp index 767d857630..576156db00 100644 --- a/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp +++ b/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp @@ -67,6 +67,7 @@ void SessionImpl::abortTransaction() { ScopedLock l(lock); aborted = true; + checkAbortedLH(l); } void SessionImpl::checkAborted() |
