From 67a103de0e67ed5b90de23eb942714d6054707da Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Thu, 25 Apr 2024 10:36:13 +0530 Subject: [PATCH] chore: Health check only backend, caddy and RTS (#32891) This is to avoid low-impact failures from getting the whole container to restart. ## Summary by CodeRabbit - **Bug Fixes** - Modified health check to focus on critical services (`editor`, `rts`, `backend`) for more efficient monitoring. --- deploy/docker/fs/opt/appsmith/healthcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/docker/fs/opt/appsmith/healthcheck.sh b/deploy/docker/fs/opt/appsmith/healthcheck.sh index 52028f05ee..e87a7a6cc6 100644 --- a/deploy/docker/fs/opt/appsmith/healthcheck.sh +++ b/deploy/docker/fs/opt/appsmith/healthcheck.sh @@ -32,7 +32,7 @@ while read -r line fi fi fi - done <<< $(supervisorctl status all) + done <<< $(supervisorctl status editor rts backend) if [ $healthy == true ]; then exit 0 else