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
The following example hangs in Deno when you send a http2 request using curl.
import http2 from "node:http2"; const server = http2.createServer((req, res) => { res.setHeader("Content-Type", "text/html"); res.setHeader("X-Foo", "bar"); res.writeHead(200, { "Content-Type": "text/plain; charset=utf-8" }); res.end("ok"); }); server.listen(8000);
curl --http2-prior-knowledge http://localhost:8000
The request hangs with deno but not with node.
The text was updated successfully, but these errors were encountered:
satyarohith
Successfully merging a pull request may close this issue.
The following example hangs in Deno when you send a http2 request using curl.
The request hangs with deno but not with node.
The text was updated successfully, but these errors were encountered: