From b873c0e4ae2970719584fe16dbaaf7864b67c46a Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Tue, 28 Apr 2026 12:35:39 +0200 Subject: [PATCH] fix(docker): increase control-pipeline healthcheck tolerance for long-running jobs Dedup Phase 2 blocks the event loop for extended periods, causing health checks to fail. Docker then restarts the container and kills the job. Increased retries from 3 to 10, timeout from 10s to 30s. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 82cae64..1ba752d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -414,10 +414,10 @@ services: condition: service_healthy healthcheck: test: ["CMD", "curl", "-f", "http://127.0.0.1:8098/health"] - interval: 30s - timeout: 10s - retries: 3 - start_period: 10s + interval: 60s + timeout: 30s + retries: 10 + start_period: 30s restart: unless-stopped networks: - breakpilot-network