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