-
Notifications
You must be signed in to change notification settings - Fork 117
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
New step: parse_url
#30
Comments
Closed
This step could make working with UNIX sockets more convenient too: Instead of: Req.get!("http:///v1.41/images/json", unix_socket: "/var/run/docker.sock") do: Req.get!("http+unix:///var/run/docker.sock/v1.41/images/json") (or: |
Nevermind, that would seem to be against https://datatracker.ietf.org/doc/html/rfc3986#section-3.3. |
Let's hold off on this for now> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In curl, these three invocations are equivalent:
let's add a
parse_url
step that will fill in the missing scheme and host.The text was updated successfully, but these errors were encountered: