This is an automated email from the ASF dual-hosted git repository.
junchao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
The following commit(s) were added to refs/heads/master by this push:
new c3acc53c Issue 193: removed & from deploy_local.sh line 115 to fix
race condition. (#194)
c3acc53c is described below
commit c3acc53c9c250e7346b7b7e8d68370fc917b72c6
Author: hammerface <[email protected]>
AuthorDate: Tue Nov 4 18:35:20 2025 -0800
Issue 193: removed & from deploy_local.sh line 115 to fix race condition.
(#194)
---
scripts/deploy/script/deploy_local.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/deploy/script/deploy_local.sh
b/scripts/deploy/script/deploy_local.sh
index 7adb1918..11145de8 100755
--- a/scripts/deploy/script/deploy_local.sh
+++ b/scripts/deploy/script/deploy_local.sh
@@ -112,7 +112,7 @@ fi
idx=1
for ip in ${deploy_iplist[@]};
do
- run_one_cmd "mkdir -p ${home_path}/${main_folder}/$idx" &
+ run_one_cmd "mkdir -p ${home_path}/${main_folder}/$idx"
((count++))
((idx++))
done