mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_compression: Move logging of compression/decompression errors to before the closing of the stream, to make logs a bit easier to follow
This commit is contained in:
parent
816598f46e
commit
0929b61dbc
1 changed files with 2 additions and 2 deletions
|
@ -98,12 +98,12 @@ local function setup_compression(session, deflate_stream)
|
|||
add_filter(session, "bytes/out", function(t)
|
||||
local status, compressed, eof = pcall(deflate_stream, tostring(t), 'sync');
|
||||
if status == false then
|
||||
module:log("warn", "%s", tostring(compressed));
|
||||
session:close({
|
||||
condition = "undefined-condition";
|
||||
text = compressed;
|
||||
extra = st.stanza("failure", {xmlns="http://jabber.org/protocol/compress"}):tag("processing-failed");
|
||||
});
|
||||
module:log("warn", "%s", tostring(compressed));
|
||||
return;
|
||||
end
|
||||
return compressed;
|
||||
|
@ -115,12 +115,12 @@ local function setup_decompression(session, inflate_stream)
|
|||
add_filter(session, "bytes/in", function(data)
|
||||
local status, decompressed, eof = pcall(inflate_stream, data);
|
||||
if status == false then
|
||||
module:log("warn", "%s", tostring(decompressed));
|
||||
session:close({
|
||||
condition = "undefined-condition";
|
||||
text = decompressed;
|
||||
extra = st.stanza("failure", {xmlns="http://jabber.org/protocol/compress"}):tag("processing-failed");
|
||||
});
|
||||
module:log("warn", "%s", tostring(decompressed));
|
||||
return;
|
||||
end
|
||||
return decompressed;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue