Skip to content

Commit

Permalink
remove parallel() processing as per discussion in #1089 (comment)
Browse files Browse the repository at this point in the history
This reverts commit 1785eb5.
  • Loading branch information
deki committed Dec 9, 2024
1 parent b931952 commit 9378840
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,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().parallel().collect(
queryStringParams = decodedQs.entrySet().stream().collect(
Collectors.toMap(
Map.Entry::getKey,
e -> getQueryParamValuesAsList(decodedQs, e.getKey(), false)
Expand Down

0 comments on commit 9378840

Please sign in to comment.