From ef73d0830cb8152d0a6f9e939104d7c1590a6e22 Mon Sep 17 00:00:00 2001 From: Alex Suraci Date: Tue, 23 Jun 2020 13:30:20 -0400 Subject: [PATCH] Revert "docker-compose: break worker/web dependency" this breaks downgrade tests; the worker can't unregister in time, since the web node just goes away immediately, and workers give up when all web nodes are unreachable, assuming the cluster is being destroyed. as a result, the check container ends up sticking around on a stalled worker, and the check eventually times out. a better solution might be to have checking not attempt to use a container that's on a stalled worker, but let's not block the pipeline on that in the meantime. This reverts commit 3a5690d3bbd73e95e5f5c5e961213e47be2ee686. --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index fabc1b270..ad221f201 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -37,6 +37,7 @@ services: image: concourse/concourse:local command: worker privileged: true + depends_on: [web] ports: - 7777:7777 - 7788:7788