From: markt Date: Wed, 2 Feb 2011 18:29:26 +0000 (+0000) Subject: Missed one place where socket needed to replace socket wrapper in r1063774 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d5ff9e6d13d2ecd358b49b4987597a1ee2e91afb;p=tomcat7.0 Missed one place where socket needed to replace socket wrapper in r1063774 git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1066568 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/coyote/http11/Http11AprProtocol.java b/java/org/apache/coyote/http11/Http11AprProtocol.java index a706cac3d..83591917f 100644 --- a/java/org/apache/coyote/http11/Http11AprProtocol.java +++ b/java/org/apache/coyote/http11/Http11AprProtocol.java @@ -389,7 +389,7 @@ public class Http11AprProtocol extends AbstractHttp11Protocol { state = result.asyncPostProcess(); } if (state != SocketState.LONG && state != SocketState.ASYNC_END) { - connections.remove(socket); + connections.remove(socket.getSocket()); socket.setAsync(false); recycledProcessors.offer(result); if (state == SocketState.OPEN) {