diff --git a/linkcheck/director/aggregator.py b/linkcheck/director/aggregator.py index 247fdd15..1d8ab2a7 100644 --- a/linkcheck/director/aggregator.py +++ b/linkcheck/director/aggregator.py @@ -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