Skip to content

Commit

Permalink
skip round robin for queuing
Browse files Browse the repository at this point in the history
hopefully will be able to remove this in the future.
  • Loading branch information
gjoseph92 committed Nov 3, 2022
1 parent 2ae7f04 commit 23135da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions distributed/tests/test_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -2852,6 +2852,10 @@ async def test_get_worker_monitor_info(s, a, b):
assert res[w.address]["last_time"] is not None


@pytest.mark.skipif(
math.isfinite(dask.config.get("distributed.scheduler.worker-saturation")),
reason="Round-robin not enabled with queuing; see https://github.com/dask/distributed/issues/7197",
)
@gen_cluster(client=True)
async def test_quiet_cluster_round_robin(c, s, a, b):
await c.submit(inc, 1)
Expand Down

0 comments on commit 23135da

Please sign in to comment.