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 9bd6b7c commit 0af2e3cCopy full SHA for 0af2e3c
src/test/java/com/arangodb/ArangoCollectionTest.java
@@ -2294,6 +2294,9 @@ public void responsibleShard() {
2294
if (arangoDB.getRole() != ServerRole.COORDINATOR) {
2295
return;
2296
}
2297
+ if (!requireVersion(3, 5)) {
2298
+ return;
2299
+ }
2300
ShardEntity shard = db.collection(COLLECTION_NAME).getResponsibleShard(new BaseDocument("testKey"));
2301
assertThat(shard, is(notNullValue()));
2302
assertThat(shard.getShardId(), is(notNullValue()));
0 commit comments