Merged branch 'jetty-9.3.x' into 'jetty-9.4.x'.
This commit is contained in:
commit
82462eafb7
|
@ -19,6 +19,7 @@
|
|||
package org.eclipse.jetty.http2.server;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.util.ArrayDeque;
|
||||
import java.util.ArrayList;
|
||||
|
@ -177,6 +178,10 @@ public class HTTP2ServerConnection extends HTTP2Connection implements Connection
|
|||
if (task != null)
|
||||
offerTask(task, false);
|
||||
}
|
||||
else
|
||||
{
|
||||
callback.failed(new IOException("channel_not_found"));
|
||||
}
|
||||
}
|
||||
|
||||
public void onTrailers(IStream stream, HeadersFrame frame)
|
||||
|
|
Loading…
Reference in New Issue