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 53ce87bea test(cluster): avoid fixture collisions across reruns
53ce87bea is described below
commit 53ce87bea19765b6cf7d9daf83feb1ebf24ef972
Author: vaughn <[email protected]>
AuthorDate: Sun Sep 13 17:54:16 2026 +0800
test(cluster): avoid fixture collisions across reruns
---
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 bc5dd2b1a..5eefed174 100755
--- a/tools/rust-rewrite-cluster/smoke.sh
+++ b/tools/rust-rewrite-cluster/smoke.sh
@@ -31,7 +31,7 @@ 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
-fixture_id="rust-gate-$(date +%Y%m%d%H%M%S)"
+fixture_id="rust-gate-$(date +%Y%m%d%H%M%S%N)"
property_key="rust_gate_pk_${fixture_id//[^a-zA-Z0-9]/}"
vertex_label="rust_gate_vl_${fixture_id//[^a-zA-Z0-9]/}"
json_header='Content-Type: application/json'