From 2f84949fe0b0a96c08c8dd4557386df5ab07eb07 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Fri, 8 Aug 2025 22:25:52 -0800 Subject: [PATCH] ci: do not retry error conditions that are always failure (#21716) --- scripts/runner.node.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/runner.node.mjs b/scripts/runner.node.mjs index 40cb6a2d76..b37bc9f2d4 100755 --- a/scripts/runner.node.mjs +++ b/scripts/runner.node.mjs @@ -424,6 +424,7 @@ async function runTests() { if (attempt >= maxAttempts || isAlwaysFailure(error)) { flaky = false; failedResults.push(failure); + break; } }