From 6b7026980445b540201eec5dfaca12e416c5cb21 Mon Sep 17 00:00:00 2001 From: Tom Prince Date: Wed, 5 Aug 2020 19:54:49 +0000 Subject: [PATCH] Bug 1604749: Get misc worker-type from graph config; r=Callek The original patch calculated the worker type, but didn't use it in the generated task. Differential Revision: https://phabricator.services.mozilla.com/D61643 --- taskcluster/taskgraph/morph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taskcluster/taskgraph/morph.py b/taskcluster/taskgraph/morph.py index 48c5c9a9da02..3f044b2e121d 100644 --- a/taskcluster/taskgraph/morph.py +++ b/taskcluster/taskgraph/morph.py @@ -78,8 +78,8 @@ def derive_misc_task( deps["docker-image"] = image_taskid task_def = { - "provisionerId": "gecko-t", - "workerType": "misc", + "provisionerId": provisioner_id, + "workerType": worker_type, "dependencies": [d for d in deps.values()], "created": {"relative-datestamp": "0 seconds"}, "deadline": target_task.task["deadline"],