-
Notifications
You must be signed in to change notification settings - Fork 182
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
DIAL_CLS / DIAL_RSP race leading to connection leak #404
Comments
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
/lifecycle frozen |
/assign @jkh52 |
@tallclair: GitHub didn't allow me to assign the following users: azimjohn. Note that only kubernetes-sigs members with read permissions, repo collaborators and people who have commented on this issue/PR can be assigned. Additionally, issues/PRs can only have 10 assignees at the same time. In response to this: 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. |
There could be a race condition where a
DIAL_CLS
packet from the frontend is received at the same time as aDIAL_RSP
from the backend that could lead to the backend connection being leaked:This could happen if the following conditions happen in this order:
apiserver-network-proxy/pkg/server/server.go
Line 755 in b5e5436
apiserver-network-proxy/pkg/server/server.go
Line 767 in b5e5436
This seems fairly unlikely (at least once #403 is fixed), but worth tracking.
The text was updated successfully, but these errors were encountered: