This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/master by this push: new 1350098 Attempt to address intermittent CI failures on Gump 1350098 is described below commit 13500985d610d2e067e927c6fb1f464e08407afa 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 f4d2c27..bb4c4eb 100644 --- a/test/org/apache/tomcat/util/net/TestSsl.java +++ b/test/org/apache/tomcat/util/net/TestSsl.java @@ -87,6 +87,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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org