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: [email protected]
For additional commands, e-mail: [email protected]