mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-13 02:41:03 +00:00
catch Timeout from abort
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3239 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
781ccf96c1
commit
faddd9acc3
1 changed files with 4 additions and 1 deletions
|
|
@ -94,4 +94,7 @@ class Aggregate (object):
|
|||
|
||||
def abort (self):
|
||||
self.urlqueue.do_shutdown()
|
||||
self.urlqueue.join(timeout=10)
|
||||
try:
|
||||
self.urlqueue.join(timeout=10)
|
||||
except linkcheck.cache.urlqueue.Timeout:
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue