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 ba8730a83d5a8a10b6daee852c868cdda3f4fb22 Author: Mark Thomas <ma...@apache.org> AuthorDate: Wed Jan 15 11:47:12 2020 +0000 Correct property name --- test/org/apache/catalina/connector/TestMaxConnections.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/org/apache/catalina/connector/TestMaxConnections.java b/test/org/apache/catalina/connector/TestMaxConnections.java index ea55ea4..833b9e9 100644 --- a/test/org/apache/catalina/connector/TestMaxConnections.java +++ b/test/org/apache/catalina/connector/TestMaxConnections.java @@ -76,7 +76,7 @@ public class TestMaxConnections extends TomcatBaseTest { root.addServletMappingDecoded("/test", "Simple"); Assert.assertTrue(tomcat.getConnector().setProperty("maxKeepAliveRequests", "1")); Assert.assertTrue(tomcat.getConnector().setProperty("maxThreads", "10")); - Assert.assertTrue(tomcat.getConnector().setProperty("soTimeout", "20000")); + Assert.assertTrue(tomcat.getConnector().setProperty("connectionTimeout", "20000")); Assert.assertTrue(tomcat.getConnector().setProperty("keepAliveTimeout", "50000")); Assert.assertTrue(tomcat.getConnector().setProperty("maxConnections", Integer.toString(MAX_CONNECTIONS))); Assert.assertTrue(tomcat.getConnector().setProperty("acceptCount", "1")); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org