Author: markt
Date: Tue Apr 26 09:34:19 2016
New Revision: 1740980
URL: http://svn.apache.org/viewvc?rev=1740980&view=rev
Log:
Extend wait period to try and reduce instances of Gump CI failures.
Modified:
tomcat/trunk/test/org/apache/tomcat/websocket/WebSocketBaseTest.java
Modified: tomcat/trunk/test/org/apache/tomcat/websocket/WebSocketBaseTest.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/websocket/WebSocketBaseTest.java?rev=1740980&r1=1740979&r2=1740980&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/tomcat/websocket/WebSocketBaseTest.java
(original)
+++ tomcat/trunk/test/org/apache/tomcat/websocket/WebSocketBaseTest.java Tue
Apr 26 09:34:19 2016
@@ -32,7 +32,8 @@ public abstract class WebSocketBaseTest
// environments it will continue to run and break other tests that
check
// it has stopped.
int count = 0;
- while (count < 50) {
+ // 5s should be plenty here but Gump can be a lot slower so allow 60s.
+ while (count < 600) {
if (BackgroundProcessManager.getInstance().getProcessCount() == 0)
{
break;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]