From 45ca8cf0335e29645b974c68c555cd687779ff75 Mon Sep 17 00:00:00 2001 From: kewe63 Date: Mon, 11 May 2026 10:38:04 +0300 Subject: [PATCH] fix: add autorestart to supervisord for process resilience --- supervisord.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/supervisord.conf b/supervisord.conf index aa634ed35..bf9854d70 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,6 +13,7 @@ stopwaitsecs=300 [program:op-execution] command=/app/execution-entrypoint +autorestart=true stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 redirect_stderr=true