Skip to content

Commit

Permalink
Disable check on waiting_for_data_count
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed May 10, 2022
1 parent a57b38c commit be9bbe2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion distributed/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -4236,7 +4236,8 @@ def validate_state(self):
or ts_wait in self._missing_dep_flight
or ts_wait.who_has.issubset(self.in_flight_workers)
), (ts, ts_wait, self.story(ts), self.story(ts_wait))
assert self.waiting_for_data_count == waiting_for_data_count
# FIXME https://github.com/dask/distributed/issues/6319
# assert self.waiting_for_data_count == waiting_for_data_count
for worker, keys in self.has_what.items():
for k in keys:
assert worker in self.tasks[k].who_has
Expand Down

0 comments on commit be9bbe2

Please sign in to comment.