Break early if we got all regressors, regressions and blockers

This commit is contained in:
Marco Castelluccio 2020-10-21 14:56:33 +02:00
Родитель 5a3608c991
Коммит a6480caa02
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -123,6 +123,10 @@ class Retriever(object):
if limit:
regression_related_ids = regression_related_ids[-limit:]
# If we got all bugs we needed, break.
if regression_related_ids.issubset(all_ids):
break
bugzilla.download_bugs(regression_related_ids)
# Try to re-download inconsistent bugs, up to three times.