Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(TaskRun): fixed the issue where some step statuses might not be correctly updated in failed TaskRun #8270

Merged
merged 1 commit into from
Sep 26, 2024

Commits on Sep 25, 2024

  1. fix(TaskRun): fixed the issue where some step statuses might not be c…

    …orrectly updated in failed TaskRun
    
    Previously, if the Pod cache is not updated in time, a `TaskRun` would be
    immediately marked as failed after a certain step fails. When the pod status
    changes to failed, the TaskRun at that time still has a completed status and
    will not enter the reconcile logic to update the status of each step.
    
    Currently, TaskRun will only fail prematurely in the event of an OOM.
    If a specific step exits abnormally, it will wait for the Pod status to
    ultimately change to failed before synchronizing the status of each step.
    l-qing committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    b21b5b9 View commit details
    Browse the repository at this point in the history