We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
httpbingo recently updated their behavior to no longer provide the content-length header on their image/jpeg resource. This breaks the tests here.
content-length
image/jpeg
Here is a minimal example that shows the difference between the live https://httpbingo.org site, and our version, which is locked to an older release:
julia> using Downloads url = "https://httpbingo.org/image/jpeg" resp = request(url; method="HEAD") haskey(Dict(resp.headers), "content-length") false julia> using Downloads url = "https://httpbingo.julialang.org/image/jpeg" resp = request(url; method="HEAD") haskey(Dict(resp.headers), "content-length") true
Getting a header dump from curl:
curl
$ curl --HEAD https://httpbingo.org/image/jpeg HTTP/2 200 access-control-allow-credentials: true access-control-allow-origin: * content-type: image/jpeg date: Tue, 15 Nov 2022 21:22:05 GMT server: Fly/5f2bf728 (2022-11-11) via: 2 fly.io fly-request-id: 01GHYJQBW2TVHEJF1AV19Q8K5W-sea
$ curl --HEAD https://httpbingo.julialang.org/image/jpeg HTTP/1.1 200 OK Server: nginx/1.19.8 Date: Tue, 15 Nov 2022 21:22:27 GMT Content-Type: image/jpeg Content-Length: 35588 Connection: keep-alive Access-Control-Allow-Credentials: true Access-Control-Allow-Origin: *
You can also run the entire test suite against the upstream httpbingo.org server by redefining this variable.
httpbingo.org
The text was updated successfully, but these errors were encountered:
No branches or pull requests
httpbingo recently updated their behavior to no longer provide the
content-length
header on theirimage/jpeg
resource. This breaks the tests here.Here is a minimal example that shows the difference between the live https://httpbingo.org site, and our version, which is locked to an older release:
Getting a header dump from
curl
:You can also run the entire test suite against the upstream
httpbingo.org
server by redefining this variable.The text was updated successfully, but these errors were encountered: