Skip to content

Commit 869e8bb

Browse files
committed
Add missing env var
1 parent cae7c72 commit 869e8bb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/it/java/io/weaviate/containers/Weaviate.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,7 @@ private void bindNodes(int gossip, int data, int raft) {
416416
nodes.forEach(node -> node
417417
.withEnv("CLUSTER_GOSSIP_BIND_PORT", String.valueOf(gossip))
418418
.withEnv("CLUSTER_DATA_BIND_PORT", String.valueOf(data))
419+
.withEnv("REPLICA_MOVEMENT_ENABLED", "true")
419420
.withEnv("RAFT_PORT", String.valueOf(raft))
420421
.withEnv("RAFT_BOOTSTRAP_EXPECT", "1"));
421422

@@ -426,7 +427,7 @@ private void bindNodes(int gossip, int data, int raft) {
426427
Wait.forHttp("/v1/.well-known/ready")
427428
.forPort(publicPort)
428429
.forStatusCode(200)
429-
.withStartupTimeout(Duration.ofSeconds(60))));
430+
.withStartupTimeout(Duration.ofSeconds(10))));
430431
}
431432
}
432433
}

0 commit comments

Comments
 (0)