diff options
| author | Alan Conway <aconway@apache.org> | 2012-06-12 21:20:27 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2012-06-12 21:20:27 +0000 |
| commit | 9bc4901f70f8f77b78cb80c33d126b95cd709ccc (patch) | |
| tree | 228a9abcf3c949bc3bcf25cb16e42887376ac0a9 /cpp/src/qpid/ha/QueueReplicator.cpp | |
| parent | 68ec17cbe42066fae4f4ebdec810a922794d2701 (diff) | |
| download | qpid-python-9bc4901f70f8f77b78cb80c33d126b95cd709ccc.tar.gz | |
QPID-3603: Guard should not complete messages from the internal event queue.
ReplicatingSubscription::acknowledge was calling Guard::complete for messages on the
internal event queue as well as the replicated queue. Corrected to only complete
messages from the replicated queue.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1349542 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/ha/QueueReplicator.cpp')
| -rw-r--r-- | cpp/src/qpid/ha/QueueReplicator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/ha/QueueReplicator.cpp b/cpp/src/qpid/ha/QueueReplicator.cpp index 8b12231453..efa45ff58c 100644 --- a/cpp/src/qpid/ha/QueueReplicator.cpp +++ b/cpp/src/qpid/ha/QueueReplicator.cpp @@ -128,7 +128,7 @@ void QueueReplicator::initializeBridge(Bridge& bridge, SessionHandler& sessionHa // FIXME aconway 2012-05-22: use a finite credit window peer.getMessage().flow(getName(), 0, 0xFFFFFFFF); peer.getMessage().flow(getName(), 1, 0xFFFFFFFF); - QPID_LOG(debug, logPrefix << "Subscribed bridge: " << bridgeName << " " << settings); + QPID_LOG(debug, logPrefix << "Subscribed: " << bridgeName); } namespace { |
