From d5ff9e6d13d2ecd358b49b4987597a1ee2e91afb Mon Sep 17 00:00:00 2001 From: markt Date: Wed, 2 Feb 2011 18:29:26 +0000 Subject: [PATCH] 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 --- java/org/apache/coyote/http11/Http11AprProtocol.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.11.0