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/01/15 12:22:46 UTC

[tomcat] 05/06: Correct property name

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

commit 013bf092446565233eedcc9e9b021cf0ec349062
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 f9820b8..52a587c 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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org