mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
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:
parent
58988fbce5
commit
c41d63004a
1 changed files with 2 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue