mod_bosh: Remove logging of request.id, it doesn't exist in the new HTTP server API (thanks Mikael Nordfeldth)
authorMatthew Wild <mwild1@gmail.com>
Fri, 07 Jun 2013 13:22:13 +0100
changeset 5650 aa3465183b01
parent 5644 f9cfe6f5d60f
child 5651 c968c8e3596d
child 5663 4e51ceee469c
mod_bosh: Remove logging of request.id, it doesn't exist in the new HTTP server API (thanks Mikael Nordfeldth)
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;