summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/cluster/OutputInterceptor.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/cluster/OutputInterceptor.cpp b/qpid/cpp/src/qpid/cluster/OutputInterceptor.cpp
index b5fa595577..ef99058471 100644
--- a/qpid/cpp/src/qpid/cluster/OutputInterceptor.cpp
+++ b/qpid/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) {