Author: markt
Date: Tue Mar 28 11:02:29 2017
New Revision: 1789095
URL: http://svn.apache.org/viewvc?rev=1789095&view=rev
Log:
Follow-up to r1788999
Need to add socket/processor to connection cache so pipe-lined request is
processed
Modified:
tomcat/tc7.0.x/trunk/java/org/apache/coyote/AbstractProtocol.java
Modified: tomcat/tc7.0.x/trunk/java/org/apache/coyote/AbstractProtocol.java
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/coyote/AbstractProtocol.java?rev=1789095&r1=1789094&r2=1789095&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/coyote/AbstractProtocol.java (original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/coyote/AbstractProtocol.java Tue Mar
28 11:02:29 2017
@@ -696,6 +696,7 @@ public abstract class AbstractProtocol<S
// closed. If it works, the socket either be added to the
// poller (or equivalent) to await more data or processed
// if there are any pipe-lined requests remaining.
+ connections.put(socket, processor);
} else if (state == SocketState.UPGRADED) {
// Need to keep the connection associated with the
processor
connections.put(socket, processor);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]