修复 task_executor.py进程

This commit is contained in:
2025-11-18 17:27:51 +08:00
parent ab92a87120
commit 206d621662

View File

@@ -161,7 +161,7 @@ function task_exe() {
JEMALLOC_PATH="$(pkg-config --variable=libdir jemalloc)/libjemalloc.so"
while true; do
LD_PRELOAD="$JEMALLOC_PATH" \
"$PY" rag/svr/task_executor.py "${host_id}_${consumer_id}"
"$PY" rag/svr/task_executor.py "${host_id}_${consumer_id}" || true
done
}