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 e9b1743 commit 9cd6c40Copy full SHA for 9cd6c40
1 file changed
src/it/java/io/weaviate/integration/ClusterITest.java
@@ -61,13 +61,13 @@ public void test_listNodes() throws IOException {
61
62
@Test
63
public void test_replicateLifecycle() throws IOException {
64
- Version.V134.orSkip(); // Replicate endpoint not implemented in earlier versions
+ Version.V132.orSkip();
65
66
// Arrange
67
68
// We must create the collection first before any shards exist on the nodes.
69
var nsThings = ns("Things");
70
- client.collections.create(nsThings);
+ client.collections.create(nsThings, c -> c.replication(r -> r.replicationFactor(2)));
71
72
var nodes = client.cluster.listNodes(opt -> opt.verbosity(NodeVerbosity.VERBOSE));
73
Assertions.assertThat(nodes)
0 commit comments