mirror of https://github.com/apache/nifi.git
NIFI-3544 - Fixes minor typo n ExtractEmailHeaders log message
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #1552.
This commit is contained in:
parent
ac5a7960e8
commit
7c6f2dc677
|
@ -213,7 +213,7 @@ public class ExtractEmailHeaders extends AbstractProcessor {
|
||||||
|
|
||||||
if (attributes.size() > 0) {
|
if (attributes.size() > 0) {
|
||||||
FlowFile updatedFlowFile = session.putAllAttributes(originalFlowFile, attributes);
|
FlowFile updatedFlowFile = session.putAllAttributes(originalFlowFile, attributes);
|
||||||
logger.info("Extracted {} into {} files", new Object[]{attributes.size(), updatedFlowFile});
|
logger.info("Extracted {} headers into {} file", new Object[]{attributes.size(), updatedFlowFile});
|
||||||
processedFlowFilesList.add(updatedFlowFile);
|
processedFlowFilesList.add(updatedFlowFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue