pr feedback

pull/767/head
Frostebite 2025-12-27 16:27:49 +00:00
parent 0ba031eabc
commit 9f26cec2a6
3 changed files with 7 additions and 3 deletions

4
dist/index.js vendored
View File

@ -4797,7 +4797,9 @@ class KubernetesTaskRunner {
// Ignore event fetch errors
}
cloud_runner_logger_1.default.logWarning(message);
waitComplete = false; // Mark as not complete so we throw an error
// For permanent failures, mark as incomplete and store the error message
// We'll throw an error after the wait loop exits
waitComplete = false;
return true; // Return true to exit wait loop
}
// Pod is complete if it's not Pending or Unknown - it might be Running, Succeeded, or Failed

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -448,7 +448,9 @@ class KubernetesTaskRunner {
}
CloudRunnerLogger.logWarning(message);
waitComplete = false; // Mark as not complete so we throw an error
// For permanent failures, mark as incomplete and store the error message
// We'll throw an error after the wait loop exits
waitComplete = false;
return true; // Return true to exit wait loop
}