From bc5729ae5d4067ac3b0f59b3cf1937442689fea4 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 19 Mar 2026 22:33:14 -0700 Subject: [PATCH] fix missing closing quote in config_generator command Made-with: Cursor --- config/supervisord.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/supervisord.conf b/config/supervisord.conf index 8e9c4345..a2869136 100644 --- a/config/supervisord.conf +++ b/config/supervisord.conf @@ -7,7 +7,8 @@ command=/bin/sh -c "\ uv run python -m planoai.config_generator && \ envsubst < /app/plano_config_rendered.yaml > /app/plano_config_rendered.env_sub.yaml && \ envsubst < /etc/envoy/envoy.yaml > /etc/envoy.env_sub.yaml && \ - touch /tmp/config_ready + touch /tmp/config_ready || \ + (echo 'Config generation failed, shutting down'; kill -15 $(cat /var/run/supervisord.pid))" priority=10 autorestart=false startsecs=0