From b6b64f2f1f6e25dc6d93bf91989fa8e4dc30e902 Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Sat, 21 Oct 2023 09:58:40 +0530 Subject: [PATCH] chore: Remove RTS Health check in Docker container --- deploy/docker/fs/opt/appsmith/healthcheck.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/deploy/docker/fs/opt/appsmith/healthcheck.sh b/deploy/docker/fs/opt/appsmith/healthcheck.sh index 7c6dc058d8..52028f05ee 100644 --- a/deploy/docker/fs/opt/appsmith/healthcheck.sh +++ b/deploy/docker/fs/opt/appsmith/healthcheck.sh @@ -20,11 +20,6 @@ while read -r line echo 'ERROR: Server is down'; healthy=false fi - elif [[ "$process" == "rts" ]]; then - if [[ $(curl -s -w "%{http_code}\n" http://localhost:8091/ -o /dev/null) -ne 302 ]]; then - echo 'ERROR: RTS is down'; - healthy=false - fi elif [[ "$process" == "mongo" ]]; then if [[ $(mongo --eval 'db.runCommand("ping").ok') -ne 1 ]]; then echo 'ERROR: Mongo is down';