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 01cf2d81c test(cluster): wait for async schema tasks
01cf2d81c is described below

commit 01cf2d81ca944a5a52c29a55225503f453b7070f
Author: vaughn <[email protected]>
AuthorDate: Sun Sep 13 17:55:19 2026 +0800

    test(cluster): wait for async schema tasks
---
 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 5eefed174..256a70955 100755
--- a/tools/rust-rewrite-cluster/smoke.sh
+++ b/tools/rust-rewrite-cluster/smoke.sh
@@ -36,7 +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
 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
 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

Reply via email to