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 2013/01/28 12:20:48 UTC

svn commit: r1439347 - /tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java

Author: markt
Date: Mon Jan 28 11:20:48 2013
New Revision: 1439347

URL: http://svn.apache.org/viewvc?rev=1439347&view=rev
Log:
Drop 10 10s. 100s was a local change while I was debugging so I had more time.

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

Modified: tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java?rev=1439347&r1=1439346&r2=1439347&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java (original)
+++ tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java Mon Jan 28 11:20:48 2013
@@ -79,7 +79,7 @@ public class TestWsWebSocketContainer ex
         wsSession.addMessageHandler(handler);
         wsSession.getRemote().sendString(MESSAGE_STRING_1);
 
-        boolean latchResult = handler.getLatch().await(100, TimeUnit.SECONDS);
+        boolean latchResult = handler.getLatch().await(10, TimeUnit.SECONDS);
 
         Assert.assertTrue(latchResult);
 
@@ -223,7 +223,7 @@ public class TestWsWebSocketContainer ex
             wsSession.getRemote().sendBytes(ByteBuffer.wrap(MESSAGE_BINARY_4K));
         }
 
-        boolean latchResult = handler.getLatch().await(100, TimeUnit.SECONDS);
+        boolean latchResult = handler.getLatch().await(10, TimeUnit.SECONDS);
 
         Assert.assertTrue(latchResult);
 



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