You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kf...@apache.org on 2014/09/16 11:23:59 UTC

svn commit: r1625227 - in /tomcat/trunk: java/org/apache/coyote/ajp/AjpNioProtocol.java webapps/docs/changelog.xml

Author: kfujino
Date: Tue Sep 16 09:23:59 2014
New Revision: 1625227

URL: http://svn.apache.org/r1625227
Log:
Ensure that AjpNioProtocol enable the KeepAliveTimeout.

Modified:
    tomcat/trunk/java/org/apache/coyote/ajp/AjpNioProtocol.java
    tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/java/org/apache/coyote/ajp/AjpNioProtocol.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/ajp/AjpNioProtocol.java?rev=1625227&r1=1625226&r2=1625227&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/ajp/AjpNioProtocol.java (original)
+++ tomcat/trunk/java/org/apache/coyote/ajp/AjpNioProtocol.java Tue Sep 16 09:23:59 2014
@@ -176,6 +176,7 @@ public class AjpNioProtocol extends Abst
             processor.setAdapter(proto.getAdapter());
             processor.setTomcatAuthentication(proto.tomcatAuthentication);
             processor.setRequiredSecret(proto.requiredSecret);
+            processor.setKeepAliveTimeout(proto.getKeepAliveTimeout());
             processor.setClientCertProvider(proto.getClientCertProvider());
             register(processor);
             return processor;

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1625227&r1=1625226&r2=1625227&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Tue Sep 16 09:23:59 2014
@@ -156,6 +156,10 @@
         <bug>56910</bug>: Prevent the invalid value of <code>-1</code> being
         used for <code>maxConnections</code> with APR connectors. (markt)
       </fix>
+      <fix>
+        Ensure that <code>AjpNioProtocol</code> enable the
+        <code>KeepAliveTimeout</code>. (kfujino)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Jasper">



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org