Author: markt
Date: Tue Dec  1 21:05:15 2015
New Revision: 1717528

URL: http://svn.apache.org/viewvc?rev=1717528&view=rev
Log:
Attempt to fix a Gump issue

Modified:
    
tomcat/trunk/test/org/apache/tomcat/websocket/pojo/TestPojoMethodMapping.java

Modified: 
tomcat/trunk/test/org/apache/tomcat/websocket/pojo/TestPojoMethodMapping.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/websocket/pojo/TestPojoMethodMapping.java?rev=1717528&r1=1717527&r2=1717528&view=diff
==============================================================================
--- 
tomcat/trunk/test/org/apache/tomcat/websocket/pojo/TestPojoMethodMapping.java 
(original)
+++ 
tomcat/trunk/test/org/apache/tomcat/websocket/pojo/TestPojoMethodMapping.java 
Tue Dec  1 21:05:15 2015
@@ -75,9 +75,9 @@ public class TestPojoMethodMapping exten
         session.getBasicRemote().sendText("NO-OP");
         session.close();
 
-        // Give server 5s to close
+        // Give server 20s to close. 5s should be plenty but the Gump VM is 
slow
         int count = 0;
-        while (count < 50) {
+        while (count < 200) {
             if (server.isClosed()) {
                 break;
             }



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

Reply via email to