mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
Simplify error catch
Co-Authored-By: Frank Elsinga <frank.elsinga@tum.de>
This commit is contained in:
parent
1fe1bb5864
commit
433e317eee
|
@ -76,13 +76,8 @@ class SNMPMonitorType extends MonitorType {
|
|||
session.close();
|
||||
|
||||
} catch (err) {
|
||||
if (err instanceof snmp.RequestTimedOutError) {
|
||||
heartbeat.status = DOWN;
|
||||
heartbeat.msg = `SNMP Error: Timed out after ${monitor.timeout} seconds`;
|
||||
} else {
|
||||
heartbeat.status = DOWN;
|
||||
heartbeat.msg = `SNMP Error: ${err.message}`;
|
||||
}
|
||||
heartbeat.status = DOWN;
|
||||
heartbeat.msg = `SNMP Error: ${err.message}`;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue