fix: increase request log limit to 500

This commit is contained in:
mango
2026-02-22 18:55:41 +08:00
parent 9dc13e9997
commit e3f632bc1c

View File

@@ -123,7 +123,7 @@ const server = http.createServer((req, res) => {
const today = now - (now % 86400);
const nodes = getNodes.all();
const stats = getStats.get(today);
const reqs = getReqs.all(50);
const reqs = getReqs.all(500);
return json(200, { nodes, stats, requests: reqs, token: undefined });
}