Github user patricker commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3188#discussion_r237530330
--- Diff:
nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/record/script/ScriptedRecordSetWriter.java
---
@@ -60,12 +61,16 @@ public void onEnabled(final ConfigurationContext
context) {
super.onEnabled(context);
}
-
@Override
public RecordSetWriter createWriter(ComponentLog logger, RecordSchema
schema, OutputStream out) throws SchemaNotFoundException, IOException {
+ return createWriter(new HashMap<>(), logger, schema, out);
--- End diff --
Thanks, Updated.
---