Skip to content

Commit

Permalink
iter
Browse files Browse the repository at this point in the history
  • Loading branch information
javanna committed Aug 8, 2023
1 parent 5025113 commit 06326ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public boolean isInSortOrderExecutionRequired() {
*/
public boolean supportsConcurrentExecution() {
for (AggregationBuilder builder : factoriesBuilder.getAggregatorFactories()) {
if (builder.supportsOffloadingSequentialCollection() || builder.supportsConcurrentExecution() == false) {
if (builder.supportsOffloadingSequentialCollection() == false || builder.supportsConcurrentExecution() == false) {
return false;
}
}
Expand Down

0 comments on commit 06326ea

Please sign in to comment.