From: Steven Barth Date: Sat, 1 Nov 2008 10:53:29 +0000 (+0000) Subject: Remove overload protection from SDK httpd X-Git-Tag: 0.9.0~1036 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=f3ca7840d6c13c12d278ba40e432840d8dba4468;ds=sidebyside Remove overload protection from SDK httpd --- diff --git a/libs/httpd/luasrc/httpd/handler/luci.lua b/libs/httpd/luasrc/httpd/handler/luci.lua index 6e9c6778d..8ccf7c86f 100644 --- a/libs/httpd/luasrc/httpd/handler/luci.lua +++ b/libs/httpd/luasrc/httpd/handler/luci.lua @@ -40,31 +40,6 @@ function Luci.handle_post(self, ...) end function Luci.handle_get(self, request, sourcein, sinkerr) - local reaped = false - local running = 0 - - for _, v in pairs(self.running) do - if v then running = running + 1 end - end - - if self.limit and running >= self.limit then - for k, v in ipairs(self.running) do - if coroutine.status(k) == "dead" then - self.running[k] = nil - running = running - 1 - reaped = true - end - end - - if reaped then collectgarbage() end - - if running >= self.limit then - return self:failure(503, "Overload %i/%i" % { running, self.limit } ) - end - end - - self.running[coroutine.running()] = true - local r = luci.http.Request( request.env, sourcein,