Details
-
Bug
-
Status: Resolved
-
P1
-
Resolution: Invalid
-
2.37.0
-
None
Description
The OffsetRestrictionTracker method tryClaim tries to calculate if the claim can be done using this condition:
if self._range.start <= position < self._range.stop: self._current_position = position return True
The condition should be
if self._range.start <= position and position < self._range.stop: self._current_position = position return True
This affects the correctness of the claims for SplittableDoFns.