From af54a24e10dda56860e7fb46f77c643b808ec00d Mon Sep 17 00:00:00 2001 From: Benjamin Labrecque Date: Wed, 26 Aug 2026 15:36:12 +0200 Subject: [PATCH] chore: use exec in bash startup script --- bin/start_service.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/start_service.sh b/bin/start_service.sh index 49d915e..79ef03f 100755 --- a/bin/start_service.sh +++ b/bin/start_service.sh @@ -40,7 +40,6 @@ uv sync --frozen --project ${APP_DIR} # activate .venv, this works in conjunction with the conda environment source ${APP_DIR}/.venv/bin/activate -# TODO: use `exec python3 ...` here? -python -u -B -m agebd_${SVC_NAME_LOWER_UNDERSCORES}.main +exec python -u -B -m agebd_${SVC_NAME_LOWER_UNDERSCORES}.main # TODO: remove: cicd test 57