wait until status thread is finished

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3282 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2006-05-22 21:35:20 +00:00
parent 761f91041b
commit ff1e16230b

View file

@ -18,7 +18,6 @@
Management of checking a queue of links with several threads.
"""
import time
import signal
import linkcheck
import linkcheck.log
import linkcheck.cache.urlqueue
@ -54,7 +53,9 @@ def check_urls (aggregate):
except StandardError:
status.internal_error()
aggregate.abort()
status.disable_status()
if aggregate.config["status"]:
status.disable_status()
status.join()
aggregate.logger.end_log_output()