diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/cluster/OutputInterceptor.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/OutputInterceptor.cpp b/cpp/src/qpid/cluster/OutputInterceptor.cpp index b5fa595577..ef99058471 100644 --- a/cpp/src/qpid/cluster/OutputInterceptor.cpp +++ b/cpp/src/qpid/cluster/OutputInterceptor.cpp @@ -66,7 +66,9 @@ void OutputInterceptor::activateOutput() { void OutputInterceptor::abort() { sys::Mutex::ScopedLock l(lock); - next->abort(); + if (parent.isLocal()) { + next->abort(); + } } void OutputInterceptor::giveReadCredit(int32_t credit) { |