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 | 4f5b2245cd3bd8834b203decf7e8669f8fbf6acc (patch) | |
| tree | 671051356dfa4bad929722b93a941b9bfa23e4d1 /cpp/src | |
| parent | cb65a2692a0bb4bf9c614b74731c9d44a06675de (diff) | |
| download | qpid-python-4f5b2245cd3bd8834b203decf7e8669f8fbf6acc.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/qpid@1619745 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/client/amqp0_10/SessionImpl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp b/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp index 767d857630..576156db00 100644 --- a/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp +++ b/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() |
