This is an automated email from the ASF dual-hosted git repository.
zyxxoo pushed a commit to branch refactor/rust-rewrite-design
in repository https://gitbox.apache.org/repos/asf/hugegraph.git
The following commit(s) were added to refs/heads/refactor/rust-rewrite-design
by this push:
new 5c18d0c8a test(cluster): wait for server restart readiness
5c18d0c8a is described below
commit 5c18d0c8a49c9b3e375a51bfed3ac675dd8e664a
Author: vaughn <[email protected]>
AuthorDate: Sun Sep 13 18:00:50 2026 +0800
test(cluster): wait for server restart readiness
---
tools/rust-rewrite-cluster/smoke.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/rust-rewrite-cluster/smoke.sh
b/tools/rust-rewrite-cluster/smoke.sh
index 87a04d32f..880d7198b 100755
--- a/tools/rust-rewrite-cluster/smoke.sh
+++ b/tools/rust-rewrite-cluster/smoke.sh
@@ -28,7 +28,7 @@ health() { curl_local -fsS --max-time 10 "$1/v1/health"
>/dev/null; }
"${compose[@]}" up -d pd0 pd1 pd2 store0 store1 store2 server0 server1 server2
"${compose[@]}" restart server0 server1 server2 >/dev/null
-sleep 10
+sleep 30
for port in 8620 8621 8622; do health "http://127.0.0.1:$port"; done
for port in 8520 8521 8522; do health "http://127.0.0.1:$port"; done
for port in 8080 8081 8082; do curl_local -fsS --max-time 10
"http://127.0.0.1:$port/versions" >/dev/null; done