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.
This commit is contained in:
Kim Alvefur 2023-11-24 00:31:08 +01:00
parent 58988fbce5
commit c41d63004a

View file

@ -407,9 +407,8 @@ function _M.finish_response(response)
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