From 5f54aa1f52336b9e1bb030ccb227539bbfa7fd62 Mon Sep 17 00:00:00 2001 From: Aki Sasaki Date: Mon, 30 Oct 2017 11:57:59 -0700 Subject: [PATCH] bug 1412690 - address review comments. r=mtabara MozReview-Commit-ID: JKeqeF1hC30 --HG-- extra : rebase_source : 7dc1800dd872a4d60d09856ba2dd92814aa65b13 --- taskcluster/taskgraph/target_tasks.py | 3 ++- taskcluster/taskgraph/transforms/task.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/taskcluster/taskgraph/target_tasks.py b/taskcluster/taskgraph/target_tasks.py index fcf702a1abd8..f0f366e69904 100644 --- a/taskcluster/taskgraph/target_tasks.py +++ b/taskcluster/taskgraph/target_tasks.py @@ -302,7 +302,8 @@ def target_tasks_mozilla_release(full_task_graph, parameters): @_target_task('maple_desktop_promotion') -@_target_task('mozilla_beta_desktop_promotion') +@_target_task('mozilla-beta_desktop_promotion') +@_target_task('mozilla-release_desktop_promotion') def target_tasks_mozilla_beta_desktop_promotion(full_task_graph, parameters): """Select the superset of tasks required to promote a beta or release build of desktop. This should include all non-android mozilla_beta tasks, plus diff --git a/taskcluster/taskgraph/transforms/task.py b/taskcluster/taskgraph/transforms/task.py index 96e2fde5a715..7d6028ce2a81 100755 --- a/taskcluster/taskgraph/transforms/task.py +++ b/taskcluster/taskgraph/transforms/task.py @@ -439,7 +439,7 @@ task_description_schema = Schema({ }, { Required('implementation'): 'scriptworker-signing', - # the maximum time to spend signing, in seconds + # the maximum time to run, in seconds Required('max-run-time', default=600): int, # list of artifact URLs for the artifacts that should be signed @@ -459,7 +459,7 @@ task_description_schema = Schema({ }, { Required('implementation'): 'beetmover', - # the maximum time to spend signing, in seconds + # the maximum time to run, in seconds Required('max-run-time', default=600): int, # locale key, if this is a locale beetmover job @@ -482,7 +482,7 @@ task_description_schema = Schema({ }, { Required('implementation'): 'beetmover-cdns', - # the maximum time to spend signing, in seconds + # the maximum time to run, in seconds Required('max-run-time', default=600): int, Required('product'): basestring, }, {