зеркало из https://github.com/mozilla/bugbug.git
Log exceptions happening while finding regressors as soon as detected
This commit is contained in:
Родитель
6b0d778e58
Коммит
8aa9b85d68
|
@ -447,7 +447,13 @@ class RegressorFinder(object):
|
|||
total=len(bug_introducing_commit_futures),
|
||||
)
|
||||
):
|
||||
if future.exception() is not None:
|
||||
exc = future.exception()
|
||||
if exc is not None:
|
||||
logger.info(
|
||||
"Exception {} while analyzing {}".format(
|
||||
exc, bug_fixing_commits[i]["rev"]
|
||||
)
|
||||
)
|
||||
for f in bug_introducing_commit_futures:
|
||||
f.cancel()
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче