pr feedback
parent
0ba031eabc
commit
9f26cec2a6
|
|
@ -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
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue