Skip to content

Commit

Permalink
Fix texts
Browse files Browse the repository at this point in the history
  • Loading branch information
tellet-q committed Dec 20, 2024
1 parent 2318daa commit e56c800
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/qdrant/client/QdrantGrpcClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -286,12 +286,12 @@ private void checkVersionsCompatibility(String clientVersion) {
+ " is incompatible with server version "
+ serverVersion
+ ". Major versions should match and minor version difference must not exceed 1. "
+ "Set check_version=False to skip version check.";
+ "Set checkCompatibility=false to skip version check.";
logger.warn(logMessage);
}
} catch (Exception e) {
logger.warn(
"Failed to obtain server version. Unable to check client-server compatibility. Set checkCompatibility=False to skip version check.");
"Failed to obtain server version. Unable to check client-server compatibility. Set checkCompatibility=false to skip version check.");
}
}
}
Expand Down

0 comments on commit e56c800

Please sign in to comment.