-
Notifications
You must be signed in to change notification settings - Fork 40.7k
Replace queue.FIFOs with k8s.io/utils/buffer.Ring #132103
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
Conversation
This issue is currently awaiting triage. If a SIG or subproject determines this is a relevant issue, they will accept it by applying the The 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-sigs/prow repository. |
/assign @liggitt |
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.
/lgtm
/approve
(still needs other approvals)
LGTM label has been added. Git tree hash: 3145cb7dc436d6247d9880213c1de66b2e475b23
|
/approve |
The Kubernetes project has merge-blocking tests that are currently too flaky to consistently pass. This bot retests PRs for certain kubernetes repos according to the following rules:
You can:
/retest |
What type of PR is this?
/kind cleanup
/area code-organization
What this PR does / why we need it:
This PR eliminates code duplicated between k8s.io/kubernetes and k8s.io/dynamic-resource-allocation by removing both implementations of
queue.FIFO
in favor of the new and compatiblebuffer.Ring
added to k8s.io/utils by kubernetes/utils#323.This PR contains two commits: one to update k8s.io/utils, and one to replace the k/k implementations.
Which issue(s) this PR fixes:
Fixes #131032
Special notes for your reviewer:
Does this PR introduce a user-facing change?
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: