diff --git a/apps/swh-graphql/entrypoint.sh b/apps/swh-graphql/entrypoint.sh index 0c92458..2ac079b 100644 --- a/apps/swh-graphql/entrypoint.sh +++ b/apps/swh-graphql/entrypoint.sh @@ -1,21 +1,20 @@ #!/bin/bash set -e case "$1" in "shell") exec bash -i ;; *) echo Starting the swh-graphql API server exec gunicorn --bind "0.0.0.0:${PORT}" \ - --reload \ --threads "${THREADS}" \ --workers "${WORKERS}" \ --log-level "${LOG_LEVEL}" \ --timeout "${TIMEOUT}" \ --config 'python:swh.core.api.gunicorn_config' \ 'swh.graphql.server:make_app_from_configfile()' ;; esac