diff --git a/server/model/monitor.js b/server/model/monitor.js index b2fed86f57..2543cf1b33 100644 --- a/server/model/monitor.js +++ b/server/model/monitor.js @@ -898,7 +898,6 @@ class Monitor extends BeanModel { retries = 0; } catch (error) { - if (error?.name === "CanceledError") { bean.msg = `timeout by AbortSignal (${this.timeout}s)`; } else { @@ -971,6 +970,7 @@ class Monitor extends BeanModel { } else if (bean.status === MAINTENANCE) { log.warn("monitor", `Monitor #${this.id} '${this.name}': Under Maintenance | Type: ${this.type}`); } else { + beatInterval = this.retryInterval; log.warn("monitor", `Monitor #${this.id} '${this.name}': Failing: ${bean.msg} | Interval: ${beatInterval} seconds | Type: ${this.type} | Down Count: ${bean.downCount} | Resend Interval: ${this.resendInterval}`); }