mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Reduce test default from 10000 images to 1000 (number can be configured as ?cnt=1000)
This commit is contained in:
parent
ccad24024d
commit
72b3d3deb2
@ -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
|
Loading…
x
Reference in New Issue
Block a user