diff options
author | Kim Alvefur <zash@zash.se> | 2014-08-27 10:44:45 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-08-27 10:44:45 +0200 |
commit | 5820cd511ada29a82126c587bd2385bbc7b183a8 (patch) | |
tree | 9e4dc2eedac4d99feadc933eba7e4ce74968dfc2 /net/http/server.lua | |
parent | 005b4aa6567836dad3da3d5ef3f357b10da9699f (diff) | |
download | prosody-5820cd511ada29a82126c587bd2385bbc7b183a8.tar.gz prosody-5820cd511ada29a82126c587bd2385bbc7b183a8.zip |
net.http.server: Comment out a log message
Diffstat (limited to 'net/http/server.lua')
-rw-r--r-- | net/http/server.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/server.lua b/net/http/server.lua index 0f379e96..771adf10 100644 --- a/net/http/server.lua +++ b/net/http/server.lua @@ -98,7 +98,7 @@ function listener.onconnect(conn) local pending = {}; local waiting = false; local function process_next() - if waiting then log("debug", "can't process_next, waiting"); return; end + if waiting then return; end -- log("debug", "can't process_next, waiting"); waiting = true; while sessions[conn] and #pending > 0 do local request = t_remove(pending); |