diff --git a/apps/swh-search/entrypoint.sh b/apps/swh-search/entrypoint.sh index f34583c545ddc3f2f853f0c4ad2eada4f684ba38..db2c4a1d437c22e6b383362f7307ce43332c47f2 100644 --- a/apps/swh-search/entrypoint.sh +++ b/apps/swh-search/entrypoint.sh @@ -19,13 +19,13 @@ case "$1" in *) echo Starting the swh-search API server exec gunicorn --bind 0.0.0.0:${PORT} \ - --log-level ${SWH_LOG_LEVEL:-INFO} \ - --threads ${THREADS} \ - --workers ${WORKERS} \ - --timeout ${TIMEOUT} \ - --statsd-host=${STATSD_HOST}:${STATSD_PORT} \ - --statsd-prefix=${STATSD_SERVICE_TYPE} \ - --reload \ - --config 'python:swh.core.api.gunicorn_config' \ - 'swh.search.api.server:make_app_from_configfile()' + --log-level ${SWH_LOG_LEVEL:-INFO} \ + --threads ${THREADS} \ + --workers ${WORKERS} \ + --timeout ${TIMEOUT} \ + --statsd-host=${STATSD_HOST}:${STATSD_PORT} \ + --statsd-prefix=${STATSD_SERVICE_TYPE} \ + --reload \ + --config 'python:swh.core.api.gunicorn_config' \ + 'swh.search.api.server:make_app_from_configfile()' esac