Skip to content

Commit 0cc3d10

Browse files
committed
fix watchfiles call so dev reload works
1 parent bd4a897 commit 0cc3d10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: assets/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ COMMAND="$COMMAND --loglevel=${LOG_LEVEL:-INFO}"
5454
if [[ "$RELOAD" == "true" ]]; then
5555
echo "Starting in development mode- celery worker will be restarted when files change."
5656
echo python -m watchfiles --sigint-timeout ${RELOAD_SIGINT_TIMEOUT:-30} "$COMMAND" /app
57-
python -m watchfiles ${RELOAD_SIGINT_TIMEOUT:-30} "$COMMAND" /app
57+
python -m watchfiles --sigint-timeout ${RELOAD_SIGINT_TIMEOUT:-30} "$COMMAND" /app
5858
else
5959
echo $COMMAND
6060
$COMMAND

0 commit comments

Comments
 (0)