aboutsummaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-08-27 10:44:45 +0200
committerKim Alvefur <zash@zash.se>2014-08-27 10:44:45 +0200
commit13844f76358c641a5895ab9406c85e7d7e7ad8fa (patch)
tree9e4dc2eedac4d99feadc933eba7e4ce74968dfc2 /net/http
parent306092e0a7259b9cc37bf618e130cb7c91f5301e (diff)
downloadprosody-13844f76358c641a5895ab9406c85e7d7e7ad8fa.tar.gz
prosody-13844f76358c641a5895ab9406c85e7d7e7ad8fa.zip
net.http.server: Comment out a log message
Diffstat (limited to 'net/http')
-rw-r--r--net/http/server.lua2
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);