Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2015-02-19 07:13:31 +0000
committerGreg Wilkins2015-02-19 07:13:31 +0000
commit968063c1ab64e9d19045c14850d35b137c569894 (patch)
treef3088496aea7992094a04086a80ff19479fd28bb /jetty-http2
parentbb8b5f9b76d6decdd416da782209c1182568173a (diff)
downloadorg.eclipse.jetty.project-968063c1ab64e9d19045c14850d35b137c569894.tar.gz
org.eclipse.jetty.project-968063c1ab64e9d19045c14850d35b137c569894.tar.xz
org.eclipse.jetty.project-968063c1ab64e9d19045c14850d35b137c569894.zip
Fixed AsyncIO double dispatch
Diffstat (limited to 'jetty-http2')
-rw-r--r--jetty-http2/http2-server/src/main/java/org/eclipse/jetty/http2/server/HttpInputOverHTTP2.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-http2/http2-server/src/main/java/org/eclipse/jetty/http2/server/HttpInputOverHTTP2.java b/jetty-http2/http2-server/src/main/java/org/eclipse/jetty/http2/server/HttpInputOverHTTP2.java
index 99e839ab6b..2f13725039 100644
--- a/jetty-http2/http2-server/src/main/java/org/eclipse/jetty/http2/server/HttpInputOverHTTP2.java
+++ b/jetty-http2/http2-server/src/main/java/org/eclipse/jetty/http2/server/HttpInputOverHTTP2.java
@@ -33,6 +33,6 @@ public class HttpInputOverHTTP2 extends HttpInput
@Override
protected void onReadPossible()
{
- _httpChannelState.onReadPossible();
+ _httpChannelState.onReadPossible(true);
}
}

Back to the top