You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2014/10/09 21:09:38 UTC

svn commit: r1630557 - /httpcomponents/httpcore/branches/4.3.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/NHttpConnectionBase.java

Author: olegk
Date: Thu Oct  9 19:09:37 2014
New Revision: 1630557

URL: http://svn.apache.org/r1630557
Log:
Do not set buffer status callback to null when re-binding non-blocking connection to upgraded I/O session

Modified:
    httpcomponents/httpcore/branches/4.3.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/NHttpConnectionBase.java

Modified: httpcomponents/httpcore/branches/4.3.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/NHttpConnectionBase.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.3.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/NHttpConnectionBase.java?rev=1630557&r1=1630556&r2=1630557&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.3.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/NHttpConnectionBase.java (original)
+++ httpcomponents/httpcore/branches/4.3.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/NHttpConnectionBase.java Thu Oct  9 19:09:37 2014
@@ -245,7 +245,6 @@ public class NHttpConnectionBase
      */
     protected void bind(final IOSession session) {
         Args.notNull(session, "I/O session");
-        this.session.setBufferStatus(null);
         setSession(session);
     }