diff options
| author | Keith Wall <kwall@apache.org> | 2014-12-05 08:47:22 +0000 |
|---|---|---|
| committer | Keith Wall <kwall@apache.org> | 2014-12-05 08:47:22 +0000 |
| commit | 24c57727be67f6b94057b135f00a393bc7b95a9c (patch) | |
| tree | 14702cfe558ecd4ea5c248126f28c4fddaccc6fb /qpid/java/broker-plugins | |
| parent | 73244217fd97fad6055854c1abb79d8d9c3294c1 (diff) | |
| download | qpid-python-24c57727be67f6b94057b135f00a393bc7b95a9c.tar.gz | |
QPID-6258: [Java Broker] Remove SubFlushRunner leaving QueueRunner solely responsible for asynchronous message delivery
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1643197 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker-plugins')
| -rw-r--r-- | qpid/java/broker-plugins/amqp-0-10-protocol/src/main/java/org/apache/qpid/server/protocol/v0_10/ServerConnectionDelegate.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/broker-plugins/amqp-0-10-protocol/src/main/java/org/apache/qpid/server/protocol/v0_10/ServerConnectionDelegate.java b/qpid/java/broker-plugins/amqp-0-10-protocol/src/main/java/org/apache/qpid/server/protocol/v0_10/ServerConnectionDelegate.java index d593c1f594..78228c209f 100644 --- a/qpid/java/broker-plugins/amqp-0-10-protocol/src/main/java/org/apache/qpid/server/protocol/v0_10/ServerConnectionDelegate.java +++ b/qpid/java/broker-plugins/amqp-0-10-protocol/src/main/java/org/apache/qpid/server/protocol/v0_10/ServerConnectionDelegate.java @@ -307,7 +307,7 @@ public class ServerConnectionDelegate extends ServerDelegate @Override public void sessionDetach(Connection conn, SessionDetach dtc) { // To ensure a clean detach, we stop any remaining subscriptions. Stop ensures - // that any in-progress delivery (SubFlushRunner/QueueRunner) is completed before the stop + // that any in-progress delivery (QueueRunner) is completed before the stop // completes. stopAllSubscriptions(conn, dtc); Session ssn = conn.getSession(dtc.getChannel()); |
