Bug 1334167: use the gecko schedulerid to avoid schedulerid conflicts; r=Callek

MozReview-Commit-ID: CdWC1y3oAQe

--HG--
extra : rebase_source : fca4eacfac28745974720ef8f02e9b58747f4887
This commit is contained in:
Dustin J. Mitchell 2017-02-06 15:08:46 +00:00
Родитель 775c0b6d2b
Коммит e8c3962c5e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -92,6 +92,6 @@ def make_decision_task(params, symbol, arguments=[], head_rev=None):
task['taskGroupId'] = task_id task['taskGroupId'] = task_id
# set the schedulerId based on the level # set the schedulerId based on the level
task['schedulerId'] = 'gecko-level-{}-cron'.format(params['level']) task['schedulerId'] = 'gecko-level-{}'.format(params['level'])
return (task_id, task) return (task_id, task)