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
I've put a println(reqstr) in connectandsend just before @retryif Base.UVError write(conn.socket, reqstr) to see what gets sent over the socket.
When I do HTTP.get("http://httpbin.org/ip"; logbody=false), I see this...
GET /ip HTTP/1.1User-Agent: HTTP.jl/0.0.0Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8,application/json; charset=utf-8Host: httpbin.org[request body logging disabled]
Looks related to #130. i.e. request if buffered into a string by the same body(::io, ...) method that is used for logging.
The text was updated successfully, but these errors were encountered:
I've put a
println(reqstr)
inconnectandsend
just before@retryif Base.UVError write(conn.socket, reqstr)
to see what gets sent over the socket.When I do
HTTP.get("http://httpbin.org/ip"; logbody=false)
, I see this...Looks related to #130. i.e. request if buffered into a string by the same
body(::io, ...)
method that is used for logging.The text was updated successfully, but these errors were encountered: