Reduce test default from 10000 images to 1000 (number can be configured as ?cnt=1000)

This commit is contained in:
bel 2015-07-02 22:50:51 +02:00
parent ccad24024d
commit 72b3d3deb2

View File

@ -4,9 +4,15 @@ mg.write("Content-Type: text/html; charset=utf-8\r\n")
mg.write("\r\n")
t = os.time()
cnt = 10000
if not mg.request_info.query_string then
cnt = 1000
else
cnt = tonumber(mg.get_var(mg.request_info.query_string, "cnt"))
end
cnt = 100*math.floor(cnt/100)
mg.write([[
<html>
<head>
@ -191,4 +197,3 @@ mg.write([[
</body>
</html>
]])
end