You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2011/07/28 16:05:56 UTC

svn commit: r1151855 - /activemq/activemq-apollo/trunk/apollo-transport/src/main/java/org/apache/activemq/apollo/transport/pipe/PipeTransportServer.java

Author: chirino
Date: Thu Jul 28 14:05:56 2011
New Revision: 1151855

URL: http://svn.apache.org/viewvc?rev=1151855&view=rev
Log:
Fixes APLO-69 : PipeTransportServer does not call resume on it's CustomDispatchSource

Modified:
    activemq/activemq-apollo/trunk/apollo-transport/src/main/java/org/apache/activemq/apollo/transport/pipe/PipeTransportServer.java

Modified: activemq/activemq-apollo/trunk/apollo-transport/src/main/java/org/apache/activemq/apollo/transport/pipe/PipeTransportServer.java
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-transport/src/main/java/org/apache/activemq/apollo/transport/pipe/PipeTransportServer.java?rev=1151855&r1=1151854&r2=1151855&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-transport/src/main/java/org/apache/activemq/apollo/transport/pipe/PipeTransportServer.java (original)
+++ activemq/activemq-apollo/trunk/apollo-transport/src/main/java/org/apache/activemq/apollo/transport/pipe/PipeTransportServer.java Thu Jul 28 14:05:56 2011
@@ -91,6 +91,7 @@ public class PipeTransportServer impleme
                 }
             }
         });
+        acceptSource.resume();
         if( onCompleted!=null ) {
             dispatchQueue.execute(onCompleted);
         }