-
Notifications
You must be signed in to change notification settings - Fork 218
OWLS-89106 - Potential fix for pod startup issue in GBU CNE environment after node drain/repave operation #2398
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
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
b33a4a3
Potential fix for pod startup issue in GBU CNE env after node drain/r…
ankedia 9c83cb0
Increase the pod ready wait timeout to 5 min (instead of 2 min) to av…
ankedia 4d6749c
Undo refactoring related changes.
ankedia 291d6d2
Fix to not increment count for introspector job.
ankedia 6d106c7
Potential fix for the race condition in the introspector job completi…
ankedia 3fb128f
Reduce timeout interval to 2 min.
ankedia 70eab49
Add previously removed event validation.
ankedia 4dbbe1c
Changes to check if the cached pod is not found on read then execute …
ankedia 240130d
Fix checkstyle error.
ankedia b035257
Minor refactoring and increase the timeout value.
ankedia e988050
Fix comments and minor change.
ankedia b009898
Minor changes.
ankedia 9a913de
Fix checkstyle error.
ankedia 2093c8f
PR review comments - create new MakeRightDomainOperation instead of u…
ankedia b3f2362
Revert previous change to create a new make-right operation and imple…
ankedia b471058
Refactoring changes.
ankedia 7b2bc9f
Check for null call result.
ankedia 5a040cc
More refactoring changes.
ankedia b974ff8
Added debug message.
ankedia 0616eb6
Minor changes.
ankedia 1c3b6a0
added unit test to test that wait for ready timeout executes make rig…
ankedia a61ddea
Minor change.
ankedia 23b60ae
Remove unused variable and potential fix for integration test failure.
ankedia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to reset the recheckCount here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved the
recheckCount
variable from DomainPresenceInfo to the Callback object since we create a separate callback instance for each resource. The WaitForReady step registers a new Callback instance in theresumeWhenReady
method and the previous callback will be removed once the fiber is resumed. With this approach, there's no need to reset the recheckCount since previous callback instance will be garbage collected once the resource is ready.