From 190992d3ce02067baab962c5c5bdd0d673503581 Mon Sep 17 00:00:00 2001 From: dl239 Date: Fri, 20 Oct 2023 14:57:55 +0800 Subject: [PATCH] fix: python mac sdk run failed (#3518) * fix: python mac * fix: fix comment --- onebox/stop_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onebox/stop_all.sh b/onebox/stop_all.sh index 747adcdf929..7ba340228f3 100755 --- a/onebox/stop_all.sh +++ b/onebox/stop_all.sh @@ -17,7 +17,7 @@ set -x -e if [[ "$OSTYPE" = "darwin"* ]]; then - pkill -9 -x -l openmldb + pkill -9 -x -l openmldb || exit 0 else pgrep -a -f "openmldb.*onebox.*" | awk '{print $1}' | xargs -I {} kill -9 {} fi