From f760f77cca4d9cbcbbee4cb2d81c8e4ee6bab283 Mon Sep 17 00:00:00 2001 From: norohind <60548839+norohind@users.noreply.github.com> Date: Mon, 30 Oct 2023 20:37:39 +0300 Subject: [PATCH] entrypoint.sh: remove verbose logging --- entrypoint.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index aaf49ef..1e52962 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,13 +2,10 @@ set -eu -echo "Generating uwsgi config" -python3 generate_uswgi_config.py if [ "$IS_WEB" = "true" ]; then - echo "Running web" + python3 generate_uswgi_config.py exec uwsgi -c /tmp/uwsgi.ini fi -echo "Running collector" exec python main.py $@