pr feedback

This commit is contained in:
Frostebite
2025-12-27 16:27:49 +00:00
parent 0ba031eabc
commit 9f26cec2a6
3 changed files with 7 additions and 3 deletions

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
}