# HG changeset patch # User Matthew Wild # Date 1294177094 0 # Node ID 461812921f8f21af87ee00b22a4793fd2699f30d # Parent 2e03ded9b8e30ae604601e38559220ee4c95b1d2 mod_bosh: Fix for miscalculating inactivity, causing disconnects under a steady stream of traffic diff -r 2e03ded9b8e3 -r 461812921f8f plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Tue Jan 04 21:19:28 2011 +0000 +++ b/plugins/mod_bosh.lua Tue Jan 04 21:38:14 2011 +0000 @@ -125,6 +125,12 @@ local session = sessions[request.sid]; if session then + -- Session was marked as inactive, since we have + -- a request open now, unmark it + if inactive_sessions[session] then + inactive_sessions[session] = nil; + end + local r = session.requests; log("debug", "Session %s has %d out of %d requests open", request.sid, #r, session.bosh_hold); log("debug", "and there are %d things in the send_buffer", #session.send_buffer); @@ -154,11 +160,6 @@ request.reply_before = os_time() + session.bosh_wait; waiting_requests[request] = true; end - if inactive_sessions[session] then - -- Session was marked as inactive, since we have - -- a request open now, unmark it - inactive_sessions[session] = nil; - end end return true; -- Inform httpserver we shall reply later