summaryrefslogtreecommitdiffstats
path: root/third_party/python/taskcluster_taskgraph/taskgraph/transforms/task_context.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/python/taskcluster_taskgraph/taskgraph/transforms/task_context.py')
-rw-r--r--third_party/python/taskcluster_taskgraph/taskgraph/transforms/task_context.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/python/taskcluster_taskgraph/taskgraph/transforms/task_context.py b/third_party/python/taskcluster_taskgraph/taskgraph/transforms/task_context.py
index 5c7ed6af80..bd36d827aa 100644
--- a/third_party/python/taskcluster_taskgraph/taskgraph/transforms/task_context.py
+++ b/third_party/python/taskcluster_taskgraph/taskgraph/transforms/task_context.py
@@ -81,9 +81,9 @@ transforms.add_validate(SCHEMA)
@transforms.add
-def render_task(config, jobs):
- for job in jobs:
- sub_config = job.pop("task-context")
+def render_task(config, tasks):
+ for task in tasks:
+ sub_config = task.pop("task-context")
params_context = {}
for var, path in sub_config.pop("from-parameters", {}).items():
if isinstance(path, str):
@@ -111,11 +111,11 @@ def render_task(config, jobs):
# Now that we have our combined context, we can substitute.
for field in fields:
- container, subfield = job, field
+ container, subfield = task, field
while "." in subfield:
f, subfield = subfield.split(".", 1)
container = container[f]
container[subfield] = substitute(container[subfield], **subs)
- yield job
+ yield task