File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -50,16 +50,16 @@ cleanup() {
50
50
51
51
# Ensure Python processes are terminated
52
52
# Find and kill any remaining Python processes started by uv
53
- killall -f " uv run" || true
53
+ pkill -f " uv run" || true
54
54
55
55
# Kill any Python processes that might have been started by the script
56
- killall -f " python.*mlflow" || true
57
- killall -f " python.*fastapi" || true
58
- killall -f " python.*reconciler" || true
56
+ pkill -f " python.*mlflow" || true
57
+ pkill -f " python.*fastapi" || true
58
+ pkill -f " python.*reconciler" || true
59
59
60
60
# As a last resort, try to find any Python processes in our virtual environment
61
61
if [ -d " llm-service/venv" ]; then
62
- killall -f " llm-service/venv/bin/python" || true
62
+ pkill -f " llm-service/venv/bin/python" || true
63
63
fi
64
64
65
65
# Stop Docker containers
You can’t perform that action at this time.
0 commit comments