diff options
-rw-r--r-- | .taskcluster.yml | 3 | ||||
-rw-r--r-- | etc/taskcluster/decisionlib.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.taskcluster.yml b/.taskcluster.yml index 1aba72b9aa6..7eebe65eec3 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -22,7 +22,8 @@ tasks: payload: maxRunTime: {$eval: '20 * 60'} # https://github.com/servo/taskcluster-bootstrap-docker-images#decision-task - image: "servobrowser/taskcluster-bootstrap:decision-task@sha256:28045b7ec0485ef363f8cb14f194008b47e9ede99f2ea40a1e945e921fce976e" + image: "servobrowser/taskcluster-bootstrap:decision-task@\ + sha256:7471a998e4462638c8d3e2cf0b4a99c9a5c8ca9f2ec0ae01cc069473b35cde10" features: taskclusterProxy: true env: diff --git a/etc/taskcluster/decisionlib.py b/etc/taskcluster/decisionlib.py index 685634d94e5..976e5cd99d2 100644 --- a/etc/taskcluster/decisionlib.py +++ b/etc/taskcluster/decisionlib.py @@ -255,7 +255,7 @@ class Task: extra=self.extra, ) - task_id = taskcluster.slugId().decode("utf8") + task_id = taskcluster.slugId() SHARED.queue_service.createTask(task_id, queue_payload) print("Scheduled %s: %s" % (task_id, self.name)) return task_id |