Skip to content

Commit

Permalink
bring back parallel() processing
Browse files Browse the repository at this point in the history
  • Loading branch information
deki committed Nov 27, 2024
1 parent a202873 commit 1785eb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ protected Map<String, String[]> generateParameterMap(MultiValuedTreeMap<String,
queryStringParams = decodedQs;
} else {
// If it's case insensitive, we check the entire map on every parameter
queryStringParams = decodedQs.entrySet().stream().collect(
queryStringParams = decodedQs.entrySet().stream().parallel().collect(
Collectors.toMap(
Map.Entry::getKey,
e -> getQueryParamValuesAsList(decodedQs, e.getKey(), false)
Expand Down

0 comments on commit 1785eb5

Please # to comment.