-
Notifications
You must be signed in to change notification settings - Fork 807
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 NodeStageVolume returning prematurely #176
Fix NodeStageVolume returning prematurely #176
Conversation
Hi @dkoshkin. Thanks for your PR. I'm waiting for a kubernetes-sigs or kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Pull Request Test Coverage Report for Build 324
💛 - Coveralls |
/ok-to-test |
It would be great to get this merged in and have a new latest image built with this change, I want to do some more manual/automated testing. |
Good catch. /lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dkoshkin, leakingtapan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Bug 1913289: Rebase to v0.8.0 for OCP 4.7
Is this a bug fix or adding new feature?
Bug fix
What is this PR about? / Why do we need it?
PR #163 introduced a bug where
NodeStageVolume
would return prematurely.This was only evident when using HDD volumes because the formatting takes longer than the default 15 seconds, unfortunately when I tested the change for #163 (comment) I only ran the sample app with a SSD and did not catch this bug :(.
When I ran the remaining e2e tests, all HDD volume tests were failing to delete EBS volumes because they were still being formatted.
Below log, shows that
NodeStageVolume: volume="vol-0504e2cf8285d7bcc" operation is already in progress
after 15 seconds(default retry period) but because it doesn't return an error the next operationNodePublishVolume
is called.What testing is done?
Locally ran all e2e tests