Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit 32cfe63

Browse files
committed
run.sh: Remove --debug argument
This doesn't do anything constructive in Gunicorn v18.0, and having it around just interferes with --preload [1]. [1]: benoitc/gunicorn#701
1 parent 78bdb3c commit 32cfe63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ GUNICORN_GRACEFUL_TIMEOUT=${GUNICORN_GRACEFUL_TIMEOUT:-3600}
66
GUNICORN_SILENT_TIMEOUT=${GUNICORN_SILENT_TIMEOUT:-3600}
77

88
cd "$(dirname $0)"
9-
exec gunicorn --access-logfile - --debug --max-requests 100 --graceful-timeout $GUNICORN_GRACEFUL_TIMEOUT -t $GUNICORN_SILENT_TIMEOUT -k gevent -b 0.0.0.0:$REGISTRY_PORT -w $GUNICORN_WORKERS wsgi:application
9+
exec gunicorn --access-logfile - --max-requests 100 --graceful-timeout $GUNICORN_GRACEFUL_TIMEOUT -t $GUNICORN_SILENT_TIMEOUT -k gevent -b 0.0.0.0:$REGISTRY_PORT -w $GUNICORN_WORKERS wsgi:application

0 commit comments

Comments
 (0)