-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
UPSTREAM: 00000: make delete waits match on UID #20305
Conversation
return err | ||
} | ||
if status, ok := response.(*metav1.Status); ok && status.Details != nil { | ||
uidMap[kubectlwait.ResourceLocation{Namespace: info.Namespace, Name: info.Name}] = status.Details.UID |
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.
does delete never handle multiple resource types? I expected at least group/resource in the key as well
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.
does delete never handle multiple resource types? I expected at least group/resource in the key as well
oops. Yep.
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.
does delete never handle multiple resource types? I expected at least group/resource in the key as well
fixed and test updated
} | ||
fmt.Printf("#### %v\n", spew.Sdump(deleteResponse)) |
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.
drop debug info
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.
drop debug info
fixed
9fbd1d8
to
f3b13c3
Compare
upstream here kubernetes/kubernetes#66136 Will rename after green. |
/retest |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, liggitt The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
f3b13c3
to
7cca473
Compare
New changes are detected. LGTM label has been removed. |
renamed commit |
merging |
@deads2k: The following test failed, say
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/test-infra repository. I understand the commands that are listed here. |
https://ci.openshift.redhat.com/jenkins/job/test_pull_request_origin_cmd/15509/consoleText indicates that UIDs don't match so the wait never finishes.
@liggitt @soltysh @juanvallejo