tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 97729e2bed94a28e4f5710a1229821887c43d8ed
parent 76cb8bb5228dffa1d24101f07f0ae484428592de
Author: Suhaib Mujahid <smujahid@mozilla.com>
Date:   Thu, 20 Nov 2025 14:55:59 +0000

Bug 2001315 - Remove translate_group from patch_schedules return. r=marco,taskgraph-reviewers,bhearsum

The patch_schedules function now returns group keys as-is instead of translating them with translate_group.

Differential Revision: https://phabricator.services.mozilla.com/D273410

Diffstat:
Mtaskcluster/gecko_taskgraph/util/bugbug.py | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/taskcluster/gecko_taskgraph/util/bugbug.py b/taskcluster/gecko_taskgraph/util/bugbug.py @@ -237,8 +237,4 @@ def patch_schedules(base_rev, patch_content, mode="quick"): f"Invalid mode: '{mode}'; expected one of 'extensive', 'moderate', 'quick'" ) - return { - translate_group(k): v - for k, v in data["groups"].items() - if v >= confidence_threshold - } + return {k: v for k, v in data["groups"].items() if v >= confidence_threshold}