Skip to content

Commit

Permalink
Avoid dask#7923 by starting run_id at 1
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait committed Jun 16, 2023
1 parent 4a0c489 commit 6bcc233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/shuffle/_scheduler_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

@dataclass
class ShuffleState(abc.ABC):
_run_id_iterator: ClassVar[itertools.count] = itertools.count()
_run_id_iterator: ClassVar[itertools.count] = itertools.count(1)

id: ShuffleId
run_id: int
Expand Down

0 comments on commit 6bcc233

Please sign in to comment.