Skip to content

Commit

Permalink
corrigir logica de recaptura
Browse files Browse the repository at this point in the history
  • Loading branch information
pixuimpou committed Oct 18, 2023
1 parent a8bb7f1 commit d956a53
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pipelines/rj_smtr/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@

with case(recapture, False):
capture_timestamp = [get_current_timestamp()]
previous_errors = [None]
previous_errors = task(
lambda: [None], checkpoint=False, name="assign_none_to_previous_errors"
)()

timestamps = merge(recapture_timestamps, capture_timestamp)

Expand Down

0 comments on commit d956a53

Please sign in to comment.