Diff

net/http/server.lua @ 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
parent 5754:dee0f05ccf70
child 6367:769a3577dd85
child 6380:4220ffb87b22
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);