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 44c4622f5 test(cluster): refresh servers after store recreation
44c4622f5 is described below
commit 44c4622f557f9d1a2b6eaf12c0e6f198ac6d8d97
Author: vaughn <[email protected]>
AuthorDate: Sun Sep 13 18:00:02 2026 +0800
test(cluster): refresh servers after store recreation
---
tools/rust-rewrite-cluster/smoke.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/rust-rewrite-cluster/smoke.sh
b/tools/rust-rewrite-cluster/smoke.sh
index 63a2308b3..87a04d32f 100755
--- a/tools/rust-rewrite-cluster/smoke.sh
+++ b/tools/rust-rewrite-cluster/smoke.sh
@@ -27,6 +27,8 @@ curl_local() { env -u HTTP_PROXY -u HTTPS_PROXY -u ALL_PROXY
NO_PROXY=localhost,
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
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