We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f1128 commit bd69dc3Copy full SHA for bd69dc3
src/scriptworker/task.py
@@ -746,6 +746,6 @@ async def claim_work(context):
746
"tasks": 1,
747
}
748
try:
749
- return await context.queue.claimWork(context.config["provisioner_id"], context.config["worker_type"], payload)
+ return await context.queue.claimWork(f"{context.config['provisioner_id']}/{context.config['worker_type']}", payload)
750
except (taskcluster.exceptions.TaskclusterFailure, aiohttp.ClientError, asyncio.TimeoutError) as exc:
751
log.warning("{} {}".format(exc.__class__, exc))
0 commit comments