[fix](doris compose) Fix not show ms recycler .out log in cloud mode (#33489)

This commit is contained in:
deardeng
2024-04-10 22:31:03 +08:00
committed by yiguolei
parent fefbde8927
commit 8c66915bb5

View File

@ -87,6 +87,19 @@ stop_cloud() {
bash bin/stop.sh
}
wait_process() {
pid=""
for ((i = 0; i < 5; i++)); do
sleep 1s
pid=$(pgrep _cloud)
if [ -n "$pid" ]; then
break
fi
done
wait_pid $pid
}
main() {
trap stop_cloud SIGTERM
@ -98,7 +111,9 @@ main() {
health_log "input args: $ARGS"
bash bin/start.sh $ARGS
bash bin/start.sh $ARGS --daemon
wait_process
}
main