From 27040d4f8609db0b34d52cc1db3166f1d7b522ea Mon Sep 17 00:00:00 2001
From: Erik Reid <erik.reid@geant.org>
Date: Sun, 4 Nov 2018 12:12:19 +0100
Subject: [PATCH] no need to resolve input oid's (already numeric)

---
 config.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/config.py b/config.py
index ed61e0d2..13b5c30c 100644
--- a/config.py
+++ b/config.py
@@ -43,8 +43,7 @@ def walk(agent_hostname, community, base_oid):
             CommunityData(community),
             UdpTransportTarget((agent_hostname, 161)),
             ContextData(),
-            ObjectType(ObjectIdentity(base_oid)
-                            .addAsn1MibSource('http://mibs.snmplabs.com/asn1/@mib@')),
+            ObjectType(ObjectIdentity(base_oid)),
             lexicographicMode=False,
             lookupNames=True,
             lookupValues=True):
-- 
GitLab