chore(internal.snmp): Rephrase error message on translating OID (#14612)

This commit is contained in:
senpro-ingwersenk 2024-01-23 15:54:16 +01:00 committed by GitHub
parent f53456d6b7
commit 9878eba241
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ func SnmpTranslateCall(oid string) (mibName string, oidNum string, oidText strin
}
if oidNum = out.RenderNumeric(); oidNum == "" {
return oid, oid, oid, oid, out, fmt.Errorf("cannot make %v numeric, please ensure all imported mibs are in the path", oid)
return oid, oid, oid, oid, out, fmt.Errorf("cannot translate %v into a numeric OID, please ensure all imported MIBs are in the path", oid)
}
oidNum = "." + oidNum + end