Should be an ulitmate fix for request timeout issue (#4011)

This commit is contained in:
Louis Lam
2023-11-12 13:50:51 +08:00
committed by GitHub
parent 0608881954
commit 6e80c850f4
2 changed files with 11 additions and 1 deletions

View File

@@ -367,6 +367,12 @@ class Monitor extends BeanModel {
bean.duration = 0;
}
// Runtime patch timeout if it is 0
// See https://github.com/louislam/uptime-kuma/pull/3961#issuecomment-1804149144
if (this.timeout <= 0) {
this.timeout = this.interval * 1000 * 0.8;
}
try {
if (await Monitor.isUnderMaintenance(this.id)) {
bean.msg = "Monitor under maintenance";