commit 1c0edca8161fc5625a4035a9df087376494cc1de
parent 9bd66b9591f0bf512eb5a224808ee7b8d2452453
Author: Julien Cristau <jcristau@mozilla.com>
Date: Thu, 20 Nov 2025 12:15:40 +0000
Bug 1999312 - make retrigger error show up in treeherder's failure summary. r=releng-reviewers,taskgraph-reviewers,bhearsum
Differential Revision: https://phabricator.services.mozilla.com/D272515
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/taskcluster/gecko_taskgraph/actions/retrigger.py b/taskcluster/gecko_taskgraph/actions/retrigger.py
@@ -154,8 +154,8 @@ def retrigger_action(parameters, graph_config, input, task_group_id, task_id):
to_run = [label]
if not input.get("force", None) and not _should_retrigger(full_task_graph, label):
- logger.info(
- f"Not retriggering task {label}, task should not be retrigged "
+ logger.error(
+ f"fatal error: Not retriggering task {label}, task should not be retriggered "
"and force not specified."
)
sys.exit(1)