Open
Description
Version
List the version(s) of hyper
, and any relevant hyper dependency (such as h2
if this is related to HTTP/2).
h2 = "0.4.6"
http = "1.0"
http-body = "1.0"
http-body-util = "0.1.2"
http_v02 = { package = "http", version = "0.2.9" }
httparse = "1.8.0"
hyper = { version = "1.6.0", features = ["full"] }
hyper-rustls = { version = "0.27.2", default-features = false, features = ["http1", "http2", "tls12", "aws-lc-rs"] }
hyper-util = { version = "0.1.10", features = ["tokio", "client", "client-legacy", "server", "server-auto"] }
Platform
The output of uname -a
(UNIX), or version and 32 or 64-bit (Windows)
Darwin macbookpro.home 24.5.0 Darwin Kernel Version 24.5.0: Tue Apr 22 19:54:49 PDT 2025; root:xnu-11417.121.6~2/RELEASE_ARM64_T6000 arm64
Description
Hitting an error in Deno's fetch
implementation when trying to access https://www.rd.usda.gov/sites/default/files/pdf-sample_0.pdf
(denoland/deno#29951). I haven't yet fully debugged it yet, but the error returned is:
error sending request from 192.168.1.137:50655 for https://www.rd.usda.gov/sites/default/files/pdf-sample_0.pdf (23.192.87.138:443): client error (SendRequest): http2 error: stream error received: unexpected internal error encountered
which suggests this is coming deep from hyper
stack