From e43c351ba0fc66f4b368fe87fda126d9daa2cc2c Mon Sep 17 00:00:00 2001 From: evanpelle Date: Tue, 11 Nov 2025 14:34:20 -0800 Subject: [PATCH] remove 18h timeout --- startup.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/startup.sh b/startup.sh index 28903d067..87cb99b80 100644 --- a/startup.sh +++ b/startup.sh @@ -1,8 +1,4 @@ #!/bin/bash set -e -# Start supervisord -if [ "$DOMAIN" = openfront.dev ] && [ "$SUBDOMAIN" != main ]; then - exec timeout 18h /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf -else - exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf -fi + +exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf