From 2e2e81b3e1bf67044d2b4c32f076827d5864ea8a Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Tue, 28 Apr 2026 14:39:19 +0200 Subject: [PATCH] fix(docker): disable healthcheck + auto-restart for control-pipeline during dedup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dedup job blocks the event loop for extended periods, causing health checks to fail repeatedly. Even 10 retries × 30s wasn't enough. Disabled healthcheck and restart policy until dedup is complete. TEMPORARY — re-enable after dedup is finished. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 1ba752d..6d4b83b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -413,12 +413,8 @@ services: embedding-service: condition: service_healthy healthcheck: - test: ["CMD", "curl", "-f", "http://127.0.0.1:8098/health"] - interval: 60s - timeout: 30s - retries: 10 - start_period: 30s - restart: unless-stopped + disable: true + restart: "no" networks: - breakpilot-network