dan-s1 commented on code in PR #11249:
URL: https://github.com/apache/nifi/pull/11249#discussion_r3249404197


##########
nifi-extension-bundles/nifi-snmp-bundle/nifi-snmp-processors/src/main/java/org/apache/nifi/snmp/utils/UsmUserDeserializer.java:
##########
@@ -73,12 +73,19 @@ public UsmUser deserialize(JsonParser jp, 
DeserializationContext ctxt) throws IO
                     "authentication protocol is specified.");
         }
 
+        OctetString localizationEngineID = null;
+        final JsonNode localizationEngineIDNode = 
node.get("localizationEngineID");
+        if (localizationEngineIDNode != null) {
+            localizationEngineID = new 
OctetString(localizationEngineIDNode.asText());

Review Comment:
   Thank you for pointing that out  I am not familiar enough with SNMP.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to