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
commit 5e546d01ea946509f38d5cb68ed0b6283e1172fc Author: Mark Thomas <ma...@apache.org> AuthorDate: Wed Jan 15 11:45:52 2020 +0000 Correct property name --- test/org/apache/catalina/connector/TestKeepAliveCount.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/org/apache/catalina/connector/TestKeepAliveCount.java b/test/org/apache/catalina/connector/TestKeepAliveCount.java index 130b360..c27c5c1 100644 --- a/test/org/apache/catalina/connector/TestKeepAliveCount.java +++ b/test/org/apache/catalina/connector/TestKeepAliveCount.java @@ -59,7 +59,7 @@ public class TestKeepAliveCount extends TomcatBaseTest { Tomcat.addServlet(root, "Simple", new SimpleServlet()); root.addServletMappingDecoded("/test", "Simple"); Assert.assertTrue(tomcat.getConnector().setProperty("maxKeepAliveRequests", "5")); - Assert.assertTrue(tomcat.getConnector().setProperty("soTimeout", "20000")); + Assert.assertTrue(tomcat.getConnector().setProperty("connectionTimeout", "20000")); Assert.assertTrue(tomcat.getConnector().setProperty("keepAliveTimeout", "50000")); init = true; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org