IndexingChain.validateMaxVectorDimension: add missing space in IllegalArgumentException wording (#12605)

This commit is contained in:
Christine Poerschke 2023-09-29 12:14:29 +01:00 committed by GitHub
parent f01f3679bb
commit e02f1b1d29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -843,8 +843,7 @@ final class IndexingChain implements Accountable {
throw new IllegalArgumentException(
"Field ["
+ fieldName
+ "]"
+ "vector's dimensions must be <= ["
+ "] vector's dimensions must be <= ["
+ maxVectorDim
+ "]; got "
+ vectorDim);