mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-09-13 23:17:00 +08:00
Wrong variable used
Thanks for pointing it out @CommanderStorm!
This commit is contained in:
@@ -32,7 +32,7 @@ class SNMPMonitorType extends MonitorType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const session = snmp.createSession(monitor._ipAddress, monitor._snmpCommunityString, options);
|
const session = snmp.createSession(monitor.hostname, monitor.snmpCommunityString, options);
|
||||||
|
|
||||||
const varbinds = await new Promise((resolve, reject) => {
|
const varbinds = await new Promise((resolve, reject) => {
|
||||||
session.get([monitor._snmpOid], (error, varbinds) => {
|
session.get([monitor._snmpOid], (error, varbinds) => {
|
||||||
|
Reference in New Issue
Block a user