-
Notifications
You must be signed in to change notification settings - Fork 228
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
curb always appends a query to request uris #137
Comments
ah you're right that's a ruby issue see curl.rb#urlalize -> recent bug sense we started shifting more of the wrapper code from C to ruby... you can work around this or wait for a fix the work around is Curl::Easy.http_get("http://www.google.com/") |
I'll use the work around. I tried to fix this myself but didn't understand where to put a test for that. |
fixed for you here: d61ecd0 |
nice. thank you. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I do requests with curb, the URI always contains a query:
This broke a few tests when I switched to curb
Is this expected?
The text was updated successfully, but these errors were encountered: