-
Notifications
You must be signed in to change notification settings - Fork 241
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
Introduce less ambiguous option for disabling certificate verification? #732
Comments
Although it's not super clear, it's pretty standard and I don't think we need to go into it here. |
I think we should introduce a new flag, and in the docstring, mention that |
Shouldn't that issue be moot when moving this option into the |
@bitti For backwards compatibility, we can't move/remove the existing |
If you're just searching for a different name: Python's requests lib has |
Hmm.
That's still a misleading name, though, because it masks the fact that users still ARE encrypting with SSL. When the first S in SSL means "secure", an option called |
The
insecure?
option in Aleph is somewhat ambiguous: It specifically refers to disabling TLS certificate verification but it may also be interpreted to mean to disable TLS. Perhaps it would make sense to deprecated it and introduce a more explicit new option likedisable-certificate-verification?
to resolve this. Then again, it's a pretty established name, e.g.clj-http
uses it, too, and so doescurl
by way of its--insecure
flag.Prompted by #730 (comment)
The text was updated successfully, but these errors were encountered: