From 1dadba4fc7f47415a055b2b3d5b974f6f8baec4a Mon Sep 17 00:00:00 2001 From: "Antoine R. Dumont (@ardumont)" <ardumont@softwareheritage.org> Date: Wed, 14 Aug 2024 13:16:27 +0200 Subject: [PATCH] scheduler/entrypoint: Fix shell indent --- apps/swh-scheduler/entrypoint.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/swh-scheduler/entrypoint.sh b/apps/swh-scheduler/entrypoint.sh index 6b0a52849..69cface16 100644 --- a/apps/swh-scheduler/entrypoint.sh +++ b/apps/swh-scheduler/entrypoint.sh @@ -19,13 +19,13 @@ case "$1" in *) echo Starting the swh-scheduler API server exec gunicorn --bind 0.0.0.0:${PORT} \ - --log-level ${SWH_LOG_LEVEL:-INFO} \ - --threads ${THREADS} \ - --workers ${WORKERS} \ - --reload \ - --timeout ${TIMEOUT} \ - --statsd-host=${STATSD_HOST}:${STATSD_PORT} \ - --statsd-prefix=${STATSD_SERVICE_TYPE} \ - --config 'python:swh.core.api.gunicorn_config' \ - 'swh.scheduler.api.server:make_app_from_configfile()' + --log-level ${SWH_LOG_LEVEL:-INFO} \ + --threads ${THREADS} \ + --workers ${WORKERS} \ + --reload \ + --timeout ${TIMEOUT} \ + --statsd-host=${STATSD_HOST}:${STATSD_PORT} \ + --statsd-prefix=${STATSD_SERVICE_TYPE} \ + --config 'python:swh.core.api.gunicorn_config' \ + 'swh.scheduler.api.server:make_app_from_configfile()' esac -- GitLab