Github user pvillard31 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2440#discussion_r165665991
--- Diff:
nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/main/java/org/apache/nifi/processors/azure/storage/ListAzureBlobStorage.java
---
@@ -106,7 +106,8 @@
attributes.put("azure.etag", entity.getEtag());
attributes.put("azure.primaryUri", entity.getPrimaryUri());
attributes.put("azure.secondaryUri", entity.getSecondaryUri());
- attributes.put("azure.blobname", entity.getName());
+ attributes.put("azure.blobname", entity.getBlobName());
+ attributes.put("filename", entity.getName());
--- End diff --
You're right. I actually completely missed the fact that this change is for
a processor with no input relationship... Disregard my comment.
---