mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-09-21 13:04:50 -04:00
Should be an ulitmate fix for request timeout issue (#4011)
This commit is contained in:
parent
0608881954
commit
6e80c850f4
2 changed files with 11 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue