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:
calvin 2006-05-17 19:56:14 +00:00
parent 781ccf96c1
commit faddd9acc3

View file

@ -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