Skip to content

Commit

Permalink
SequenceCache fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyzverev committed Oct 4, 2023
1 parent 93ac23e commit bc2cf85
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recon_lw/SequenceCache.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ def get_next_chunk(self, current_ts: dict) -> SortedKeyList:
else:
expiring_times = list(self._time_indexes.keys())

if len(expiring_times) == 0:
return []
start = None
end = None
for t in expiring_times:
Expand Down

0 comments on commit bc2cf85

Please sign in to comment.