HTTP.jl
HTTP.jl copied to clipboard
HTTP for Julia
# Version Details: Please specify the following versions when submitting a bug report: - Julia 1.6 - HTTP.jl 1 - MbedTLS.jl N/A # Issue Details This is more of a...
This is what `readbytes!` docstring from `Base` says, but `readbytes!` on a HTTP streams returns the total number of bytes. I realize that this method is probably internal as it...
Observed in a production setting that a very long request (> 10 minutes) seemed to hang when the connection was silently closed from the remote side. Passing `keepalive=true` fixed the...
Hi. Sharing my example of implementing permessage-deflate using CodecZlib in continuation #853. In the process, I encountered fragmentation difficulties, since the `opcode` is calculated during the process of sending data...
NGINX `$bytes_received` includes header bytes as well, I think (http://nginx.org/en/docs/stream/ngx_stream_core_module.html#var_bytes_received) so perhaps this should be called `$body_bytes_receieved`? Or perhaps this should be updated to also count header bytes. (NGINX doesn't...
- Julia 1.7.3 - HTTP.jl 1 The logging function supplied with HTTP.jl checks the `stream.nwritten` field to log the size of the data sent out. https://github.com/JuliaWeb/HTTP.jl/blob/master/src/Streams.jl#L16 But I would like...
# Verisons Julia v1.7.3 HTTP.jl v1.2.0 MbedTLS.jl v1.1.1 # Issue When calling `HTTP.get()` on a resource with `Content-Encoding: gzip`, the response is automatically decoded for me: ``` julia> using HTTP...
Spec: https://datatracker.ietf.org/doc/html/rfc8305 This might be tricky for us though since `Sockets.connect!`, as far as I understand, relies on holding the global IO lock, so it's unclear if we'd be able...
It's been reported that users sometimes feel the need to disable HTTP's retry abilities and wrap HTTP methods with their own retry logic due to the lack of configurability around...
I'm using websockets with protocols to try and work with a javascript library bokehjs. This breaks when using chromium-based browsers although *not* with firefox. You can reproduce the bug with...