Bug 1532236 Convert level into integer in partials transform r=mtabara

Differential Revision: https://phabricator.services.mozilla.com/D22108

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Simon Fraser 2019-03-05 16:12:08 +00:00
Родитель 23e76434b1
Коммит 48d7b61acb
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -155,7 +155,7 @@ def make_task_description(config, jobs):
}
# We only want caching on linux/windows due to bug 1436977
if level == 3 and any([platform in dep_th_platform for platform in ['linux', 'windows']]):
if int(level) == 3 and any([platform in dep_th_platform for platform in ['linux', 'windows']]):
task['scopes'].append(
'auth:aws-s3:read-write:tc-gp-private-1d-us-east-1/releng/mbsdiff-cache/')