diff --git a/vpp-snmp-agent.py b/vpp-snmp-agent.py index 6055bf0..fcaa377 100755 --- a/vpp-snmp-agent.py +++ b/vpp-snmp-agent.py @@ -122,8 +122,7 @@ class MyAgent(agentx.Agent): self.logger.debug("Retrieved Interfaces: vppapi=%d vppstats=%d lcp=%d" % (num_ifaces, num_vppstat, num_lcp)) if num_ifaces != num_vppstat: - self.logger.error("Interfaces count mismatch: vppapi=%d vppstats=%d" % (num_ifaces, num_vppstat)) - return False + self.logger.warning("Interfaces count mismatch: vppapi=%d vppstats=%d" % (num_ifaces, num_vppstat)) for i in range(len(vppstat['/if/names'])): ifname = vppstat['/if/names'][i]