mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-19 22:01:00 +00:00
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:
parent
761f91041b
commit
ff1e16230b
1 changed files with 3 additions and 2 deletions
|
|
@ -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()
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue