From 03e5ac696421f0037645f56e7e1c2d1db0d93950 Mon Sep 17 00:00:00 2001 From: Eric Gao Date: Tue, 24 May 2022 09:53:11 +0800 Subject: [PATCH] [Bug][Deploy]Fix worker-server path in script scp-hosts.sh (#10208) (#10209) (cherry picked from commit 4dbe27bb8f7e87fcf18582e970d08236f2dbf3d5) --- script/scp-hosts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/scp-hosts.sh b/script/scp-hosts.sh index b5cd611984..5ac51de8ed 100755 --- a/script/scp-hosts.sh +++ b/script/scp-hosts.sh @@ -49,7 +49,7 @@ do fi done # set worker groups in application.yaml - [[ -n ${workerIndex} ]] && sed -i "s/- default/- ${groupNames[$workerIndex]}/" worker-server/conf/application.yaml + [[ -n ${workerIndex} ]] && sed -i "s/- default/- ${groupNames[$workerIndex]}/" ../worker-server/conf/application.yaml for dsDir in bin master-server worker-server alert-server api-server ui tools do @@ -58,7 +58,7 @@ do scp -q -P $sshPort -r $workDir/../$dsDir $host:$installPath done # restore worker groups to default - [[ -n ${workerIndex} ]] && sed -i "s/- ${groupNames[$workerIndex]}/- default/" worker-server/conf/application.yaml + [[ -n ${workerIndex} ]] && sed -i "s/- ${groupNames[$workerIndex]}/- default/" ../worker-server/conf/application.yaml echo "scp dirs to $host/$installPath complete" done