diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-06-07 13:22:13 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-06-07 13:22:13 +0100 |
commit | d06cad4628a71be0165a9c5261fcb59399af0feb (patch) | |
tree | 3bb6c51ba69b1e640afec504f76b4110a87d5175 /plugins | |
parent | 9c877dbe930137f5e4507da798fdd91135e8af9e (diff) | |
download | prosody-d06cad4628a71be0165a9c5261fcb59399af0feb.tar.gz prosody-d06cad4628a71be0165a9c5261fcb59399af0feb.zip |
mod_bosh: Remove logging of request.id, it doesn't exist in the new HTTP server API (thanks Mikael Nordfeldth)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_bosh.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 8c084c95..936cb7b5 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -321,7 +321,7 @@ function stream_callbacks.streamopened(context, attr) 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; |