Skip to content
This repository was archived by the owner on Mar 22, 2023. It is now read-only.

Commit 39c7c41

Browse files
author
Brice Figureau
committed
Fix harmless error about not finding oid enterprises.20267.200.1
Signed-off-by: Brice Figureau <brice@daysofwonder.com>
1 parent 0363e58 commit 39c7c41

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mysql-agent

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,9 @@ sub set_value {
656656
if (!$error) {
657657
my $oidname = $oids{$oid}->{'name'};
658658
if (!defined $oidname) {
659-
dolog(LOG_ERR, "Error finding a oidname for $oid");
659+
if ($oid != $regOID) {
660+
dolog(LOG_ERR, "Error finding a oidname for $oid");
661+
}
660662
return;
661663
}
662664

0 commit comments

Comments
 (0)