chore: skip vd snapshots blinking error#1540
Merged
Merged
Conversation
Contributor
Reviewer's GuideThis PR modifies the VirtualDiskSnapshots e2e test to suppress intermittent “blinking” failures by capturing the readiness assertion into a shared error variable and skipping subsequent test execution when such a failure occurs. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Contributor
There was a problem hiding this comment.
Hey there - I've reviewed your changes - here's some feedback:
- Rather than tracking a global
criticalErrto skip all subsequent specs, consider using Ginkgo’s built-in retry/flake support (e.g.FlakeAttempts) or per-spec skips to handle intermittent snapshot failures without hiding other tests. - When you intercept the Gomega failure, make sure to log or surface the original error message so debugging the root cause of the snapshot flake is easier before it gets skipped.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Rather than tracking a global `criticalErr` to skip all subsequent specs, consider using Ginkgo’s built-in retry/flake support (e.g. `FlakeAttempts`) or per-spec skips to handle intermittent snapshot failures without hiding other tests.
- When you intercept the Gomega failure, make sure to log or surface the original error message so debugging the root cause of the snapshot flake is easier before it gets skipped.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
LopatinDmitr
approved these changes
Oct 6, 2025
yachmenevas
pushed a commit
that referenced
this pull request
Oct 15, 2025
Signed-off-by: Valeriy Khorunzhin <valeriy.khorunzhin@flant.com>
Isteb4k
pushed a commit
that referenced
this pull request
Oct 15, 2025
Signed-off-by: Valeriy Khorunzhin <valeriy.khorunzhin@flant.com> (cherry picked from commit 215bb55)
nevermarine
pushed a commit
that referenced
this pull request
Oct 15, 2025
Signed-off-by: Valeriy Khorunzhin <valeriy.khorunzhin@flant.com> (cherry picked from commit 215bb55) Signed-off-by: Maksim Fedotov <maksim.fedotov@flant.com>
Isteb4k
pushed a commit
that referenced
this pull request
Oct 15, 2025
Signed-off-by: Valeriy Khorunzhin <valeriy.khorunzhin@flant.com> (cherry picked from commit 215bb55) Signed-off-by: Isteb4k <dmitry.rakitin@flant.com>
nevermarine
pushed a commit
that referenced
this pull request
Oct 15, 2025
Signed-off-by: Valeriy Khorunzhin <valeriy.khorunzhin@flant.com> (cherry picked from commit 215bb55) Signed-off-by: Maksim Fedotov <maksim.fedotov@flant.com>
nevermarine
pushed a commit
that referenced
this pull request
Oct 15, 2025
Signed-off-by: Valeriy Khorunzhin <valeriy.khorunzhin@flant.com> (cherry picked from commit 215bb55) Signed-off-by: Maksim Fedotov <maksim.fedotov@flant.com>
universal-itengineer
pushed a commit
that referenced
this pull request
Oct 15, 2025
Signed-off-by: Valeriy Khorunzhin <valeriy.khorunzhin@flant.com> (cherry picked from commit 215bb55) Signed-off-by: Maksim Fedotov <maksim.fedotov@flant.com>
deckhouse-BOaTswain
pushed a commit
that referenced
this pull request
Jul 22, 2026
Signed-off-by: Valeriy Khorunzhin <valeriy.khorunzhin@flant.com> (cherry picked from commit e1f8920) Signed-off-by: Maksim Fedotov <maksim.fedotov@flant.com>
deckhouse-BOaTswain
pushed a commit
that referenced
this pull request
Jul 22, 2026
Signed-off-by: Valeriy Khorunzhin <valeriy.khorunzhin@flant.com> (cherry picked from commit e1f8920) Signed-off-by: Maksim Fedotov <maksim.fedotov@flant.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Skip VDSnapshot blinking error.
Checklist