You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I pass scheme, host, and query arguments to HTTP.URI(), the returned object has no .uri field; rather, .uri equals "", an empty string. When I pass a string URL to HTTP.URI(), the returned object has a non-empty .uri field.
Julia 1.4.2
HTTP.jl 0.8.16
MbedTLS.jl 1.0.2
When I pass
scheme
,host
, andquery
arguments toHTTP.URI()
, the returned object has no.uri
field; rather,.uri
equals""
, an empty string. When I pass a string URL toHTTP.URI()
, the returned object has a non-empty.uri
field.HTTP.URI(str)
works as expected:HTTP.URI(; scheme="", host="", port="", etc...)
does not:Is this intended?
I'm fine doing the following to get what I want, but the above behavior just wasn't what I was expecting.
The text was updated successfully, but these errors were encountered: