We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dfe756 commit 07e5542Copy full SHA for 07e5542
1 file changed
.github/workflows/test.yml
@@ -173,6 +173,9 @@ jobs:
173
run: |
174
docker-compose -f .github/docker-compose.yaml up -d
175
176
+ # periodically ping logs until a connection has been established; assume failure after 2 minutes
177
+ timeout 2m bash -c 'until docker logs dask-worker 2>&1 | grep -q "Starting established connection"; do sleep 1; done'
178
+
179
docker logs dask-scheduler
180
docker logs dask-worker
181
- name: Test with pytest while running an independent dask cluster
0 commit comments