Software /
code /
prosody
Changeset
6360:ffcd3992a40c
net.http.server: Comment out a log message
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 27 Aug 2014 10:44:45 +0200 |
parents | 6359:c74670b3be53 |
children | 6361:f12889981ece |
files | net/http/server.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/net/http/server.lua Tue Aug 26 21:50:08 2014 +0200 +++ b/net/http/server.lua Wed Aug 27 10:44:45 2014 +0200 @@ -98,7 +98,7 @@ 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);