You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by or...@apache.org on 2016/11/18 10:31:51 UTC

svn commit: r1770359 - /qpid/java/branches/6.0.x/broker-core/src/main/java/org/apache/qpid/server/transport/SelectorThread.java

Author: orudyy
Date: Fri Nov 18 10:31:51 2016
New Revision: 1770359

URL: http://svn.apache.org/viewvc?rev=1770359&view=rev
Log:
QPID-7508: [Java Broker] Add changes missed in the previous merge; the changes stop the awakening of selector prematurely

Modified:
    qpid/java/branches/6.0.x/broker-core/src/main/java/org/apache/qpid/server/transport/SelectorThread.java

Modified: qpid/java/branches/6.0.x/broker-core/src/main/java/org/apache/qpid/server/transport/SelectorThread.java
URL: http://svn.apache.org/viewvc/qpid/java/branches/6.0.x/broker-core/src/main/java/org/apache/qpid/server/transport/SelectorThread.java?rev=1770359&r1=1770358&r2=1770359&view=diff
==============================================================================
--- qpid/java/branches/6.0.x/broker-core/src/main/java/org/apache/qpid/server/transport/SelectorThread.java (original)
+++ qpid/java/branches/6.0.x/broker-core/src/main/java/org/apache/qpid/server/transport/SelectorThread.java Fri Nov 18 10:31:51 2016
@@ -643,10 +643,5 @@ class SelectorThread extends Thread
          {
              _workQueue.add(new ConnectionProcessor(_scheduler, connection));
          }
-         SelectionTask selectionTask = connection.getSelectionTask();
-         if (selectionTask != null)
-         {
-             selectionTask.wakeup();
-         }
      }
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org