Github user pvillard31 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2783#discussion_r194400940
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/MergeRecord.java
---
@@ -89,6 +89,7 @@
@WritesAttribute(attribute = "merge.count", description = "The number
of FlowFiles that were merged into this bundle"),
@WritesAttribute(attribute = "merge.bin.age", description = "The age
of the bin, in milliseconds, when it was merged and output. Effectively "
+ "this is the greatest amount of time that any FlowFile in this
bundle remained waiting in this processor before it was output"),
+ @WritesAttribute(attribute = "merge.uuid", description = "UUID of the
merged flow file that will be added to the original flow files attributes"),
--- End diff --
You're right, always good to ensure consistency.
---