diff --git a/runtime/runtime_impl_jetty12/src/main/java/com/google/apphosting/runtime/jetty/delegate/internal/DelegateConnection.java b/runtime/runtime_impl_jetty12/src/main/java/com/google/apphosting/runtime/jetty/delegate/internal/DelegateConnection.java index 17b14a49..338c5f24 100644 --- a/runtime/runtime_impl_jetty12/src/main/java/com/google/apphosting/runtime/jetty/delegate/internal/DelegateConnection.java +++ b/runtime/runtime_impl_jetty12/src/main/java/com/google/apphosting/runtime/jetty/delegate/internal/DelegateConnection.java @@ -118,6 +118,7 @@ public void handle() throws IOException { new DelegateConnectionMetadata(_endpoint, this, _connector); HttpChannelState httpChannel = new HttpChannelState(connectionMetaData); httpChannel.setHttpStream(new DelegateHttpStream(_endpoint, this, httpChannel)); + httpChannel.initialize(); // Generate the Request MetaData. String method = delegateExchange.getMethod();