We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a52bc1e commit 08e239bCopy full SHA for 08e239b
x-pack/plugin/rank-rrf/src/main/java/org/elasticsearch/xpack/rank/linear/LinearRetrieverBuilder.java
@@ -131,7 +131,7 @@ public LinearRetrieverBuilder(
131
throw new IllegalArgumentException("The number of normalizers must match the number of inner retrievers");
132
}
133
if (minScore < 0) {
134
- throw new IllegalArgumentException("[min_score] must be greater than 0, was: " + minScore);
+ throw new IllegalArgumentException("[min_score] must be greater than or equal to 0, was: " + minScore);
135
136
this.weights = weights;
137
this.normalizers = normalizers;
0 commit comments