Missed one place where socket needed to replace socket wrapper in r1063774
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 2 Feb 2011 18:29:26 +0000 (18:29 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 2 Feb 2011 18:29:26 +0000 (18:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1066568 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/Http11AprProtocol.java

index a706cac..8359191 100644 (file)
@@ -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) {