From: markt Date: Thu, 30 Sep 2010 16:16:05 +0000 (+0000) Subject: Fix remaining issues with AJP/APR and TCK. Note mod_jk log is full of warnings so... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c41248ffbe21c24aac84e6ea5a6e1b1fa5685012;p=tomcat7.0 Fix remaining issues with AJP/APR and TCK. Note mod_jk log is full of warnings so there is still work to do here. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1003136 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/coyote/ajp/AjpAprProtocol.java b/java/org/apache/coyote/ajp/AjpAprProtocol.java index a0faf4724..4b4ea26fe 100644 --- a/java/org/apache/coyote/ajp/AjpAprProtocol.java +++ b/java/org/apache/coyote/ajp/AjpAprProtocol.java @@ -481,9 +481,9 @@ public class AjpAprProtocol if (state != SocketState.LONG && state != SocketState.ASYNC_END) { connections.remove(socket); recycledProcessors.offer(result); - if (state == SocketState.OPEN) { - proto.endpoint.getPoller().add(socket.getSocket().longValue()); - } + //if (state == SocketState.OPEN) { + // proto.endpoint.getPoller().add(socket.getSocket().longValue()); + //} } } }