You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2014/01/21 23:32:24 UTC

svn commit: r1560212 - /tomcat/trunk/test/org/apache/tomcat/websocket/TestWebSocketFrameClient.java

Author: markt
Date: Tue Jan 21 22:32:24 2014
New Revision: 1560212

URL: http://svn.apache.org/r1560212
Log:
Fix order of magnitude error in the wait time

Modified:
    tomcat/trunk/test/org/apache/tomcat/websocket/TestWebSocketFrameClient.java

Modified: tomcat/trunk/test/org/apache/tomcat/websocket/TestWebSocketFrameClient.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/websocket/TestWebSocketFrameClient.java?rev=1560212&r1=1560211&r2=1560212&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/tomcat/websocket/TestWebSocketFrameClient.java (original)
+++ tomcat/trunk/test/org/apache/tomcat/websocket/TestWebSocketFrameClient.java Tue Jan 21 22:32:24 2014
@@ -142,7 +142,7 @@ public class TestWebSocketFrameClient ex
         // should be a lot faster.
         System.out.println("Waiting for connection to be closed");
         count = 0;
-        limit = 10000;
+        limit = 100;
         while (TesterFirehoseServer.Endpoint.getOpenConnectionCount() != 0 && count < limit) {
             Thread.sleep(100);
             count ++;



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org