From bef0743d69562a82584abba5e04d3c57a08d664b Mon Sep 17 00:00:00 2001 From: lenovo Date: Sat, 6 Jun 2026 14:40:53 +0300 Subject: [PATCH] fix: add autorestart to supervisord for process resilience --- supervisord.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/supervisord.conf b/supervisord.conf index 77d11a461..543513cb8 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -5,6 +5,7 @@ logfile_maxbytes=0 [program:base-consensus] command=/app/consensus-entrypoint +autorestart=true stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 redirect_stderr=true @@ -12,7 +13,8 @@ stopwaitsecs=300 [program:execution] command=/app/execution-entrypoint +autorestart=true stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 redirect_stderr=true -stopwaitsecs=300 +stopwaitsecs=300 \ No newline at end of file