Update archivebox/misc/logging_util.py

Co-authored-by: Nick Sweeting <git@sweeting.me>
This commit is contained in:
Ben Muthalaly 2025-02-05 17:55:45 -06:00 committed by GitHub
parent 9f4cf0a8e1
commit 71c02ca4eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -155,9 +155,10 @@ class TimedProgress:
time.sleep(0.1)
# sometimes the timer doesn't terminate properly, then blocks at the join until
# the full time has elapsed. sending a kill tries to avoid that.
if self.p.is_alive():
try:
self.p.kill()
self.p.join()
except Exception:
pass
# clear whole terminal line