KevinHuSh
commited on
Commit
·
4f70b71
1
Parent(s):
9c052f3
fix bug (#659)
Browse files### What problem does this PR solve?
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
- docker/entrypoint.sh +1 -1
docker/entrypoint.sh
CHANGED
@@ -18,7 +18,7 @@ do
|
|
18 |
task_exe $i $WS &
|
19 |
done
|
20 |
|
21 |
-
while [ 1 -eq
|
22 |
$PY api/ragflow_server.py
|
23 |
done
|
24 |
|
|
|
18 |
task_exe $i $WS &
|
19 |
done
|
20 |
|
21 |
+
while [ 1 -eq 1 ];do
|
22 |
$PY api/ragflow_server.py
|
23 |
done
|
24 |
|