Bug 433424 - talos stage/production/try shouldn't attempt to test bused builds

p=anodelman r=bhearsum
This commit is contained in:
anodelman%mozilla.com 2008-06-19 21:05:31 +00:00
Родитель 92ad09518f
Коммит efddc0d9a0
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -189,7 +189,7 @@ class TinderboxPoller(base.ChangeSource):
continue
self.lastChanges[buildNode['hostname']] = buildDate
# ignore if build is busted
if buildNode['status'] == 'busted':
if buildNode['status'] <> 'success':
continue
c = changes.Change(who = buildNode['hostname'],
files = ['TODO: filename goes here'],

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

@ -203,7 +203,7 @@ class TinderboxPoller(base.ChangeSource):
continue
allBuildDates.append(buildDate)
# ignore if build is busted
if buildNode['status'] == 'busted':
if buildNode['status'] <> 'success':
continue
c = changes.Change(who = buildNode['hostname'],
files = ['TODO: filename goes here'],