mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-09-16 16:36:56 +08:00
Try to fix timeout again
This commit is contained in:
@@ -83,6 +83,7 @@ class Database {
|
||||
"patch-add-gamedig-given-port.sql": true,
|
||||
"patch-notification-config.sql": true,
|
||||
"patch-fix-kafka-producer-booleans.sql": true,
|
||||
"patch-timeout": true,
|
||||
};
|
||||
|
||||
/**
|
||||
|
@@ -369,7 +369,7 @@ class Monitor extends BeanModel {
|
||||
|
||||
// Runtime patch timeout if it is 0
|
||||
// See https://github.com/louislam/uptime-kuma/pull/3961#issuecomment-1804149144
|
||||
if (this.timeout <= 0) {
|
||||
if (!this.timeout || this.timeout <= 0) {
|
||||
this.timeout = this.interval * 1000 * 0.8;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user