-
Notifications
You must be signed in to change notification settings - Fork 3.3k
examples/pod_exec.py: fix example #1401
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
Welcome @Akasurde! |
Use get_default_copy() API with configuration.
Fixes: #1396 |
/assign @roycaihw |
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.
Thanks!
/lgtm
/approve
c = Configuration() | ||
c.assert_hostname = False | ||
try: | ||
c = Configuration().get_default_copy() |
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.
nit: maybe add a comment that this is the right way of setting the config starting v12.0.0
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Akasurde, roycaihw 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 |
Use get_default_copy() API with configuration.