Skip to content

Commit

Permalink
Fix false success on check
Browse files Browse the repository at this point in the history
  • Loading branch information
forsyth2 committed Nov 19, 2021
1 parent 6b7d30e commit 80f21b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zstash/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def multiprocess_extract(
monitor, tars_for_this_worker, failure_queue
)
process: multiprocessing.Process = multiprocessing.Process(
target=extractFiles, args=(matches, keep_files, keep_tars, cache, worker)
target=extractFiles, args=(matches, keep_files, keep_tars, cache, worker), daemon=True
)
process.start()
processes.append(process)
Expand Down

0 comments on commit 80f21b1

Please sign in to comment.