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) <noreply@anthropic.com>
This commit is contained in:
@@ -414,10 +414,10 @@ services:
|
|||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://127.0.0.1:8098/health"]
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:8098/health"]
|
||||||
interval: 30s
|
interval: 60s
|
||||||
timeout: 10s
|
timeout: 30s
|
||||||
retries: 3
|
retries: 10
|
||||||
start_period: 10s
|
start_period: 30s
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- breakpilot-network
|
- breakpilot-network
|
||||||
|
|||||||
Reference in New Issue
Block a user