From 6ce98cf542e1a911390ef46414c6b7ee484acccb Mon Sep 17 00:00:00 2001 From: XuanYang-cn Date: Thu, 26 Oct 2023 20:44:14 +0800 Subject: [PATCH] Fix sript stop unable to find milvus process (#27957) /kind improvement Signed-off-by: yangxuan --- scripts/stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/stop.sh b/scripts/stop.sh index 61c28bddde..d697fe03b7 100755 --- a/scripts/stop.sh +++ b/scripts/stop.sh @@ -15,7 +15,7 @@ # limitations under the License. echo "Stopping milvus..." -PROCESS=$(ps -e | grep milvus | grep -v grep | grep run-with-subprocess | awk '{print $1}') +PROCESS=$(ps -e | grep milvus | grep -v grep | awk '{print $1}') if [ -z "$PROCESS" ]; then echo "No milvus process" exit 0