Dmitry
Results
2
comments of
Dmitry
Try to change the timeout to zero. In file httpserver.lua: `local s = net.createServer(net.TCP, 10) -- 10 seconds client timeout`
I am using this code in init.lua: ``` local compileAndRemove = function() for name in pairs(file.list()) do local isHttpFile = string.match(name, "^(http/)") local isCompiled = string.match(name, ".+(\.lc)$") local isLuaScript =...