You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if multiprocess_worker:
# If there are things left to print, print them.
multiprocess_worker.print_all_contents()
# Add the failures to the queue.
# When running with multiprocessing, the function multiprocess_extract()
# that calls this extractFiles() function will return the failures as a list.
for f in failures:
multiprocess_worker.failure_queue.put(f)
The text was updated successfully, but these errors were encountered:
Initially reported in #167 with partial fix in #168.
zstash check
was reporting success even if exceptions occurred. This is related to the multiprocessing. Code blocks to investigate would include the following (all in https://github.com/E3SM-Project/zstash/blob/master/zstash/extract.py):In
multiprocess_extract
:In
extractFiles
:The text was updated successfully, but these errors were encountered: