Bug 1364421 - temporarily disable SETA. r=bstack, a=CLOSED TREE

MozReview-Commit-ID: KEoiYhR6bXs
This commit is contained in:
Joel Maher 2017-05-12 14:41:52 -04:00
Родитель 4e993e38aa
Коммит 5d7cb32492
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -206,6 +206,10 @@ def opt_index_search(task, params, index_path):
def opt_seta(task, params):
bbb_task = False
# disable SETA - bug 1364421
return False, None
"""
# for bbb tasks we need to send in the buildbot buildername
if task.task.get('provisionerId', '') == 'buildbot-bridge':
label = task.task.get('payload').get('buildername')
@ -224,6 +228,7 @@ def opt_seta(task, params):
return True, None
else:
return False, None
"""
@optimization('files-changed')