Skip to content

Commit 6ce98cf

Browse files
authored
Fix sript stop unable to find milvus process (milvus-io#27957)
/kind improvement Signed-off-by: yangxuan <xuan.yang@zilliz.com>
1 parent f9c6302 commit 6ce98cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/stop.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616

1717
echo "Stopping milvus..."
18-
PROCESS=$(ps -e | grep milvus | grep -v grep | grep run-with-subprocess | awk '{print $1}')
18+
PROCESS=$(ps -e | grep milvus | grep -v grep | awk '{print $1}')
1919
if [ -z "$PROCESS" ]; then
2020
echo "No milvus process"
2121
exit 0

0 commit comments

Comments
 (0)