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 7e757a37b test(cluster): allow schema task convergence
7e757a37b is described below
commit 7e757a37b18662e086cfa47cf832184622c47738
Author: vaughn <[email protected]>
AuthorDate: Sun Sep 13 17:56:25 2026 +0800
test(cluster): allow schema task convergence
---
tools/rust-rewrite-cluster/smoke.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/rust-rewrite-cluster/smoke.sh
b/tools/rust-rewrite-cluster/smoke.sh
index 256a70955..b8c8820c9 100755
--- a/tools/rust-rewrite-cluster/smoke.sh
+++ b/tools/rust-rewrite-cluster/smoke.sh
@@ -36,9 +36,9 @@ 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'
curl_local -fsS -X POST "$base_server/graphs/hugegraph/schema/propertykeys" -H
"$json_header" -d
"{\"name\":\"$property_key\",\"data_type\":\"TEXT\",\"cardinality\":\"SINGLE\",\"properties\":[]}"
>/dev/null
-sleep 2
+sleep 10
curl_local -fsS -X POST "$base_server/graphs/hugegraph/schema/vertexlabels" -H
"$json_header" -d
"{\"name\":\"$vertex_label\",\"id_strategy\":\"CUSTOMIZE_STRING\",\"properties\":[\"$property_key\"],\"primary_keys\":[],\"nullable_keys\":[]}"
>/dev/null
-sleep 2
+sleep 10
curl_local -fsS -X POST "$base_server/graphs/hugegraph/graph/vertices" -H
"$json_header" -d
"{\"id\":\"$fixture_id\",\"label\":\"$vertex_label\",\"properties\":{\"$property_key\":\"committed\"}}"
>/dev/null
"${compose[@]}" stop pd0 >/dev/null