1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-07-15 01:44:19 +02:00
Files
uptime-kuma/db/patch-timeout.sql
Louis Lam f0975cd929 Should be a final ulitmate fix for request timeout issue (#4045)
* Try to fix timeout again

* Ops
2023-11-18 01:17:54 +08:00

8 lines
212 B
SQL

-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;
UPDATE monitor SET timeout = (interval * 0.8)
WHERE timeout IS NULL OR timeout <= 0;
COMMIT;