diff --git a/gunicorn/start.sh b/gunicorn/start.sh index 8fd903fc..6de8d8d7 100644 --- a/gunicorn/start.sh +++ b/gunicorn/start.sh @@ -59,4 +59,5 @@ else fi # Start Gunicorn -exec gunicorn -k "$WORKER_CLASS" -c "$GUNICORN_CONF" "$APP_MODULE" \ No newline at end of file +echo "Starting Gunicorn: gunicorn -k \"$WORKER_CLASS\" -c \"$GUNICORN_CONF\" \"$APP_MODULE\"" +exec gunicorn -k "$WORKER_CLASS" -c "$GUNICORN_CONF" "$APP_MODULE" diff --git a/prestart.sh b/prestart.sh index d2cb7021..1968e85d 100755 --- a/prestart.sh +++ b/prestart.sh @@ -31,3 +31,6 @@ do # Only run prestart.sh if present/ [ -x $prestart ] && $prestart done + +echo "Prestart Complete" +exit 0