From 98d3ca3b0cf077a466d609b595df9fa523ff8261 Mon Sep 17 00:00:00 2001
From: "Antoine R. Dumont (@ardumont)" <ardumont@softwareheritage.org>
Date: Wed, 14 Aug 2024 11:36:15 +0200
Subject: [PATCH] search/entrypoint: Indent shell

---
 apps/swh-search/entrypoint.sh | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/apps/swh-search/entrypoint.sh b/apps/swh-search/entrypoint.sh
index f34583c54..db2c4a1d4 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
-- 
GitLab