-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Remove deprecated use of wait. functions #10546
Conversation
Signed-off-by: Will <[email protected]>
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.
Thank you! lgtm, one minor nit!
Co-authored-by: Brad Davidson <[email protected]> Signed-off-by: Will Andrews <[email protected]>
Ah good catch. Committed! |
There is an error in the split role cluster config on this PR. |
Co-authored-by: Derek Nola <[email protected]> Signed-off-by: Will Andrews <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #10546 +/- ##
==========================================
- Coverage 49.66% 43.32% -6.34%
==========================================
Files 179 179
Lines 14936 14953 +17
==========================================
- Hits 7418 6479 -939
- Misses 6158 7277 +1119
+ Partials 1360 1197 -163
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Proposed Changes
The following functions have been deprecated (along with their replacements)
PollImmediateUntilWithContext
is nowPollUntilContextCancel
PollImmediateInfiniteWithContext
is nowPollUntilContextCancel
PollImmediateWithContext
is nowPollUntilContextTimeout
PollImmediate
is nowPollUntilContextTimeout
Since all of these functions that are being replaced as
Immediate
theimmediate
flag is being set as true.Types of Changes
Verification
Testing
Linked Issues
#9321
User-Facing Change
Further Comments