From 62afcf5ac8b7a29a1c44c85ad7f9693232c5046c Mon Sep 17 00:00:00 2001 From: KevinHuSh Date: Tue, 7 May 2024 13:16:12 +0800 Subject: [PATCH] fix bug (#659) ### What problem does this PR solve? ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- docker/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index c7a4dcce150..07548dc10e0 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -18,7 +18,7 @@ do task_exe $i $WS & done -while [ 1 -eq q ];do +while [ 1 -eq 1 ];do $PY api/ragflow_server.py done