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 | 13844f76358c641a5895ab9406c85e7d7e7ad8fa (patch) | |
tree | 9e4dc2eedac4d99feadc933eba7e4ce74968dfc2 | |
parent | 306092e0a7259b9cc37bf618e130cb7c91f5301e (diff) | |
download | prosody-13844f76358c641a5895ab9406c85e7d7e7ad8fa.tar.gz prosody-13844f76358c641a5895ab9406c85e7d7e7ad8fa.zip |
net.http.server: Comment out a log message
-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); |