Skip to content

Commit

Permalink
Update persistence-opensearch/conditions/src/main/java/org/apache/uno…
Browse files Browse the repository at this point in the history
…mi/persistence/opensearch/conditions/PropertyConditionOSQueryBuilder.java
  • Loading branch information
sergehuber authored Feb 4, 2025
1 parent 13b8018 commit 1706f2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private void checkRequiredValuesSize(Collection<?> values, String name, String o

private void checkRequiredValue(Object value, String name, String operator, boolean multiple) {
if (value == null) {
throw new IllegalArgumentException("Impossible to build ES filter, missing value" + (multiple ? "s" : "") + " for condition using comparisonOperator: " + operator + ", and propertyName: " + name);
throw new IllegalArgumentException("Impossible to build OS filter, missing value" + (multiple ? "s" : "") + " for condition using comparisonOperator: " + operator + ", and propertyName: " + name);
}
}

Expand Down

0 comments on commit 1706f2b

Please sign in to comment.