From 8057b74d37ca85c8cab02abc6e5f76b0e6b7d700 Mon Sep 17 00:00:00 2001 From: Butkovits Atila Date: Fri, 20 Aug 2021 23:51:45 +0300 Subject: [PATCH] Backed out changeset 1da05a6d5548 (bug 1726603) for causing Gecko decision task bustage. CLOSED TREE --- taskcluster/taskgraph/util/chunking.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taskcluster/taskgraph/util/chunking.py b/taskcluster/taskgraph/util/chunking.py index 323a19b8df3e..3623d7e8ee32 100644 --- a/taskcluster/taskgraph/util/chunking.py +++ b/taskcluster/taskgraph/util/chunking.py @@ -48,10 +48,10 @@ def guess_mozinfo_from_task(task): "ccov": "ccov" in task["build-attributes"]["build_platform"], "debug": task["build-attributes"]["build_type"] == "debug", "e10s": task["attributes"]["e10s"], - "fission": "fission" in task["attributes"].get("unittest_variant"), + "fission": task["attributes"].get("unittest_variant") == "fission", "headless": "-headless" in task["test-name"], "tsan": "tsan" in task["build-attributes"]["build_platform"], - "webrender": task.get("webrender", True), + "webrender": task.get("webrender", False), } for platform in ("android", "linux", "mac", "win"): if platform in task["build-attributes"]["build_platform"]: