Skip to content

Commit

Permalink
temporary hotfix: suppress FileNotFoundError for single intermediaries
Browse files Browse the repository at this point in the history
  • Loading branch information
dodamih committed Nov 21, 2023
1 parent 38b1187 commit 17e105f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,10 @@ def flow( # pylint:disable=too-many-branches, too-many-statements
yield tasks_reduce
yield mazepa.Dependency()
clear_cache(dst_temp)
delete_if_local(dst_temp)
try:
delete_if_local(dst_temp)
except FileNotFoundError:
pass
# case with checkerboarding
else:
if dst.backend.enforce_chunk_aligned_writes:
Expand Down

0 comments on commit 17e105f

Please sign in to comment.