-
Notifications
You must be signed in to change notification settings - Fork 39.8k
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
dnsprovider: Avoid panic if fields are nil #44380
dnsprovider: Avoid panic if fields are nil #44380
Conversation
The aws-sdk has some helper functions which should generally be used whenever dereferencing an AWS provided pointer, in case the pointer is nil, which would otherwise be a panic. Issue kubernetes/kops#2347
@k8s-bot bazel test this |
/lgtm |
@madhusudancs can you approve if it looks good please :-) |
Reviewed 1 of 1 files at r1. Comments from Reviewable |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: justinsb, madhusudancs, shashidharatd
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
Automatic merge from submit-queue |
/lgtm |
This is tripping us in 1.6.2, would appreciate cherry-picking into 1.6 branch, thanks! |
The aws-sdk has some helper functions which should generally be used
whenever dereferencing an AWS provided pointer, in case the pointer is
nil, which would otherwise be a panic.
Issue kubernetes/kops#2347