Skip to content
Snippets Groups Projects
Commit 11496d3a authored by Alán Muñoz's avatar Alán Muñoz
Browse files

use legacy last time point

parent 18925c8d
No related branches found
No related tags found
No related merge requests found
...@@ -282,13 +282,13 @@ class Pipeline(ProcessABC): ...@@ -282,13 +282,13 @@ class Pipeline(ProcessABC):
) )
for k, v in process_from.items(): for k, v in process_from.items():
if not ow[k]: if not ow[k]:
process_from[k] = legacy_get_last_tp[k](f)
process_from[k] = f[ # process_from[k] = f[
self.writer_groups[k][-1] # self.writer_groups[k][-1]
].attrs.get( # ].attrs.get(
"last_processed", # "last_processed",
legacy_get_last_tp[k](f), # legacy_get_last_tp[k](f),
) # )
process_from[k] += 1 process_from[k] += 1
# get state array # get state array
if not ow["baby"]: if not ow["baby"]:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment