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

CSI: fix handling of garbage collected node in node unpublish #12350

Merged
merged 1 commit into from
Mar 22, 2022

Commits on Mar 22, 2022

  1. csi: fix handling of garbage collected node in node unpublish

    When a node is garbage collected, we assume that the volume is no
    longer attached to it and ignore the `ErrUnknownNode` error. But we
    used `errors.Is` to check for a wrapped error, and RPC flattens the
    errors during serialization. This results in an error check that works
    in automated testing but not in real clusters. Use a string contains
    check instead.
    tgross committed Mar 22, 2022
    Configuration menu
    Copy the full SHA
    8084e33 View commit details
    Browse the repository at this point in the history