Github user MikeThomsen commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/3203#discussion_r239160879
  
    --- Diff: 
nifi-mock/src/main/java/org/apache/nifi/util/MockProcessSession.java ---
    @@ -496,7 +496,10 @@ public MockFlowFile putAllAttributes(FlowFile 
flowFile, final Map<String, String
             final MockFlowFile newFlowFile = new MockFlowFile(mock.getId(), 
flowFile);
             currentVersions.put(newFlowFile.getId(), newFlowFile);
     
    -        newFlowFile.putAttributes(attrs);
    +        Map<String, String> attrCopy = new HashMap<>();
    +        attrCopy.putAll(attrs);
    --- End diff --
    
    Only change I'd make here is putting that into the constructor. Other than 
that LGTM.


---

Reply via email to