Skip to content

Commit 662fbf7

Browse files
jcristauahal
authored andcommitted
fix: look for the right key in status_task_batched responses
1 parent bf23b91 commit 662fbf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/taskgraph/util/taskcluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def pagination_handler(response):
308308
{
309309
t["taskId"]: t["status"]
310310
for t in response.get("statuses", [])
311-
if "namespace" in t and "taskId" in t
311+
if "status" in t and "taskId" in t
312312
}
313313
)
314314

0 commit comments

Comments
 (0)