-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
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
Responding with boxed strings breaks HTTP server #25203
Comments
Caused by ba40347. Trying to figure out right now whether this is intentional or not. |
Yup, definitely a bug. |
Fixed in #25207 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version: Deno 1.46.0 and 1.46.1 (does not happen on 1.45.5 and below)
OS: Windows 11 / Linux (Debian 12)
Returning a
Response
made with a boxed string in theDeno.serve
callback results in multiple calls to the handler per request and no data actually being sent, resulting in a "connection reset" / "empty response" error on the client-side.Boxed strings are occasionally sent by Hono apps, like this one:
The text was updated successfully, but these errors were encountered: