From 75a0595dfc098b63270d647a85c4e77ffe17af4b Mon Sep 17 00:00:00 2001 From: Steven Achilles Date: Fri, 10 Dec 2021 08:18:03 +0100 Subject: [PATCH] Revert "fix: Stop all process before sending SIGTERM to supervisor. (#2422)" This reverts commit 3778a7abb1ac7c603288735547821f6610da07be. --- entrypoint.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index fbfc4915..1d9bc107 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -21,7 +21,6 @@ case ${1} in /usr/bin/supervisord -nc /etc/supervisor/supervisord.conf & SUPERVISOR_PID=$! migrate_database - /usr/bin/supervisorctl stop all kill -15 $SUPERVISOR_PID if ps h -p $SUPERVISOR_PID > /dev/null ; then wait $SUPERVISOR_PID || true