Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ public void testLimitsInFlightRequests() throws Exception {
}

List<Tuple<String, CharSequence>> requests = new ArrayList<>();
for (int i = 0; i < 150; i++) {
// See please https://github.com/netty/netty/pull/17068 why 128 is the cap, we should be able to
// make it configurable in the Netty next release.
for (int i = 0; i < 128; i++) {
requests.add(Tuple.tuple("/index/_bulk", bulkRequest));
}

Expand Down