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 2020/04/15 07:57:59 UTC

[tomcat] branch 9.0.x updated: Attempt to address intermittent CI failures on Gump

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 293406c  Attempt to address intermittent CI failures on Gump
293406c is described below

commit 293406cd045bbd62b48fd2769e498aac8df1bb7a
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Apr 15 08:56:56 2020 +0100

    Attempt to address intermittent CI failures on Gump
---
 test/org/apache/tomcat/util/net/TestSsl.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/test/org/apache/tomcat/util/net/TestSsl.java b/test/org/apache/tomcat/util/net/TestSsl.java
index f55a794..0507231 100644
--- a/test/org/apache/tomcat/util/net/TestSsl.java
+++ b/test/org/apache/tomcat/util/net/TestSsl.java
@@ -86,6 +86,8 @@ public class TestSsl extends TomcatBaseTest {
 
         Tomcat tomcat = getTomcatInstance();
         TesterSupport.initSsl(tomcat);
+        // Increase timeout as default (3s) can be too low for some CI systems
+        Assert.assertTrue(tomcat.getConnector().setProperty("connectionTimeout", "20000"));
 
         Context ctxt = tomcat.addContext("", null);
         Tomcat.addServlet(ctxt, "post", new SimplePostServlet());


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