File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
jetty-http3-common/src/main/java/org/eclipse/jetty/http3
jetty-http3-tests/src/test/java/org/eclipse/jetty/http3/tests Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -532,7 +532,7 @@ protected void onGoAway(GoAwayFrame frame)
532
532
// The other peer sent us a GOAWAY with the last processed streamId,
533
533
// so we must fail the streams that have a bigger streamId.
534
534
Predicate <HTTP3Stream > predicate = stream -> stream .isLocal () && stream .getId () > frame .getLastId ();
535
- failStreams (predicate , HTTP3ErrorCode .REQUEST_CANCELLED_ERROR .code (), new EofException ());
535
+ failStreams (predicate , HTTP3ErrorCode .REQUEST_CANCELLED_ERROR .code (), new RetryableStreamException ());
536
536
}
537
537
538
538
tryRunZeroStreamsAction ();
Original file line number Diff line number Diff line change 29
29
import org .eclipse .jetty .http3 .frames .HeadersFrame ;
30
30
import org .eclipse .jetty .util .Promise ;
31
31
import org .eclipse .jetty .util .thread .Invocable ;
32
- import org .junit .jupiter .api .Assumptions ;
33
32
import org .junit .jupiter .params .ParameterizedTest ;
34
33
import org .junit .jupiter .params .provider .MethodSource ;
35
34
@@ -44,9 +43,6 @@ public class RetryRequestTest extends AbstractClientServerTest
44
43
@ MethodSource ("transports" )
45
44
public void testRetryRequest (TransportType transportType ) throws Exception
46
45
{
47
- // TODO #13131
48
- Assumptions .assumeTrue (transportType != TransportType .H3_QUICHE );
49
-
50
46
AtomicReference <Session > serverSessionRef = new AtomicReference <>();
51
47
start (transportType , new Session .Server .Listener ()
52
48
{
You can’t perform that action at this time.
0 commit comments