mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
Refactor line for conciseness
This commit is contained in:
parent
7eee5db4d2
commit
b2d76bc60a
|
@ -29,11 +29,7 @@ class SNMPMonitorType extends MonitorType {
|
|||
|
||||
const varbinds = await new Promise((resolve, reject) => {
|
||||
session.get([ monitor.snmpOid ], (error, varbinds) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
} else {
|
||||
resolve(varbinds);
|
||||
}
|
||||
error ? reject(error) : resolve(varbinds);
|
||||
});
|
||||
});
|
||||
log.debug("monitor", `SNMP: Received varbinds (Type: ${snmp.ObjectType[varbinds[0].type]} Value: ${varbinds[0].value}`);
|
||||
|
|
Loading…
Reference in a new issue