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

commit 7b2c9ba82011ccefba1577bfdecc72bd1e186f34
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 4746ad6..e469d8c 100644
--- a/test/org/apache/catalina/connector/TestMaxConnections.java
+++ b/test/org/apache/catalina/connector/TestMaxConnections.java
@@ -79,7 +79,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

Reply via email to