We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Endpoints are defined as (host, port) tuples and then make the assumption that the protocol is always http.
(host, port)
http
We probably want to at least support https as well.
https
The text was updated successfully, but these errors were encountered:
I can take this up with some more information about how to proceed
Sorry, something went wrong.
@varun-doshi I think the least intrusive approach would be to add an enum to the endpoint like:
enum Protocol { Http, Https, }
Successfully merging a pull request may close this issue.
Endpoints are defined as
(host, port)
tuples and then make the assumption that the protocol is alwayshttp
.We probably want to at least support
https
as well.The text was updated successfully, but these errors were encountered: