We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96e1c4d commit 8172a42Copy full SHA for 8172a42
modules/transport-netty4/src/test/java/org/elasticsearch/http/netty4/Netty4EmptyChunkHandlerTests.java
@@ -85,9 +85,10 @@ public void testKeepEncodingForNonEmpty() {
85
86
public void testRandomizedChannelReuse() {
87
for (int i = 0; i < 1000; i++) {
88
- switch (between(0, 2)) {
+ switch (between(0, 3)) {
89
case 0 -> testNonChunkedPassthrough();
90
case 1 -> testKeepEncodingForNonEmpty();
91
+ case 2 -> testDecodingFailurePassthrough();
92
default -> testRemoveEncodingFromEmpty();
93
}
94
0 commit comments