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 2015/12/01 22:05:15 UTC

svn commit: r1717528 - /tomcat/trunk/test/org/apache/tomcat/websocket/pojo/TestPojoMethodMapping.java

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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org