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:58:42 UTC

[tomcat] branch 8.5.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 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


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

commit 7756b512d5f8bc2625f4353902b38215ed0b12f6
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 f5ae28b..c594c09 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