[EMAIL PROTECTED] wrote:
hgomez 2002/11/21 01:42:36

Modified: catalina/src/conf server.xml
Log:
No timeout to be set in AJP13 connector, it's the webserver
responsability to drop unused connections

Revision Changes Path
1.65 +1 -1 jakarta-tomcat-4.0/catalina/src/conf/server.xml
Index: server.xml
===================================================================
RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/conf/server.xml,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- server.xml 5 Nov 2002 11:41:49 -0000 1.64
+++ server.xml 21 Nov 2002 09:42:36 -0000 1.65
@@ -107,7 +107,7 @@
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8009" minProcessors="5" maxProcessors="75"
enableLookups="true" redirectPort="8443"
- acceptCount="10" debug="0" connectionTimeout="20000"
+ acceptCount="10" debug="0" connectionTimeout="0"
useURIValidationHack="false"
protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
We shouldn't close the connection on the java side to avoid webserver to be puzzled with half-closed sockets.



--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>



Reply via email to