# HG changeset patch # User Kim Alvefur # Date 1700782268 -3600 # Node ID 407174990ab08d1c3b126efa49e31cc066359820 # Parent 92b7ccc76c3a20d225f1511235335d3ca9c9f9be net.http.server: Complete async waiter for non-persistent connections Otherwise requests with Connection: close would be stuck in the async wait that starts after the handle_request() call. Together with the new async debugging, this makes the async thread stay in the set of waiting runners forever, where previously it would simply be garbage collected. diff -r 92b7ccc76c3a -r 407174990ab0 net/http/server.lua --- a/net/http/server.lua Thu Nov 23 17:49:57 2023 +0100 +++ b/net/http/server.lua Fri Nov 24 00:31:08 2023 +0100 @@ -407,9 +407,8 @@ response:on_destroy(); response.on_destroy = nil; end - if response.persistent then - response:finish_cb(); - else + response:finish_cb(); + if not response.persistent then response.conn:close(); end end