# HG changeset patch # User Matthew Wild # Date 1370607733 -3600 # Node ID aa3465183b01f39cfe5cc9b5473f810360a69fe7 # Parent f9cfe6f5d60f8c9347828d27286a4c0e6942d321 mod_bosh: Remove logging of request.id, it doesn't exist in the new HTTP server API (thanks Mikael Nordfeldth) diff -r f9cfe6f5d60f -r aa3465183b01 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Wed Jun 05 21:35:50 2013 +0100 +++ b/plugins/mod_bosh.lua Fri Jun 07 13:22:13 2013 +0100 @@ -321,7 +321,7 @@ session.log("warn", "rid too large (means a request was lost). Last rid: %d New rid: %s", session.rid, attr.rid); elseif diff <= 0 then -- Repeated, ignore - session.log("debug", "rid repeated (on request %s), ignoring: %s (diff %d)", request.id, session.rid, diff); + session.log("debug", "rid repeated, ignoring: %s (diff %d)", session.rid, diff); context.notopen = nil; context.ignore = true; context.sid = sid;