mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_bosh: Fix to correctly timeout idle sessions
This commit is contained in:
parent
4511f645fa
commit
be7514d447
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ local inactive_sessions = {}; -- Sessions which have no open requests
|
|||
local waiting_requests = {};
|
||||
function on_destroy_request(request)
|
||||
waiting_requests[request] = nil;
|
||||
local session = request.session;
|
||||
local session = sessions[request.sid];
|
||||
if session then
|
||||
local requests = session.requests;
|
||||
for i,r in pairs(requests) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue