Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2014-09-26 07:46:14 +0000
committerSimone Bordet2014-09-26 08:13:16 +0000
commit8d2efaf7eb3c8cb901d83bb19041f35ea770d6f6 (patch)
tree17637d78408c0ec3d6784196e6f3179d398e1a23 /jetty-proxy
parenta8b461fe914545342ccf669abf34ea05a1a5de9e (diff)
downloadorg.eclipse.jetty.project-8d2efaf7eb3c8cb901d83bb19041f35ea770d6f6.tar.gz
org.eclipse.jetty.project-8d2efaf7eb3c8cb901d83bb19041f35ea770d6f6.tar.xz
org.eclipse.jetty.project-8d2efaf7eb3c8cb901d83bb19041f35ea770d6f6.zip
445167 - Allow configuration of dispatch after select.
Introduced parameter "dispatchIO" in the relevant factories so that they can be configured by users and connections will be created taking into account this parameter. For less configurable connection factories, this parameter is currently hardcoded to either true or false depending on the case. For example, ALPN and NPN connections have it to false, since they don't do any blocking operation in onFillable().
Diffstat (limited to 'jetty-proxy')
-rw-r--r--jetty-proxy/src/main/java/org/eclipse/jetty/proxy/ProxyConnection.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-proxy/src/main/java/org/eclipse/jetty/proxy/ProxyConnection.java b/jetty-proxy/src/main/java/org/eclipse/jetty/proxy/ProxyConnection.java
index 3a620f43a1..f8e6d44a3d 100644
--- a/jetty-proxy/src/main/java/org/eclipse/jetty/proxy/ProxyConnection.java
+++ b/jetty-proxy/src/main/java/org/eclipse/jetty/proxy/ProxyConnection.java
@@ -41,7 +41,7 @@ public abstract class ProxyConnection extends AbstractConnection
protected ProxyConnection(EndPoint endp, Executor executor, ByteBufferPool bufferPool, ConcurrentMap<String, Object> context)
{
- super(endp, executor);
+ super(endp, executor, false);
this.bufferPool = bufferPool;
this.context = context;
}

Back to the top