Skip to content

Commit

Permalink
test: use process.kill() instead of process.terminate()
Browse files Browse the repository at this point in the history
  • Loading branch information
qx6ghqkz committed Jan 11, 2025
1 parent ec3f844 commit d696ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl_server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def download_task(url, options):

if "Video should already be available" in record.getMessage():
log.warning("Terminating process as video is not available")
process.terminate()
process.kill()
except queue.Empty:
continue

Expand Down

0 comments on commit d696ac1

Please sign in to comment.