Github user olegz commented on a diff in the pull request:
https://github.com/apache/nifi/pull/1088#discussion_r87056058
--- Diff:
nifi-nar-bundles/nifi-avro-bundle/nifi-avro-processors/src/main/java/org/apache/nifi/processors/avro/SplitAvro.java
---
@@ -267,7 +267,8 @@ public void process(InputStream rawIn) throws
IOException {
}
// while records are left, start a new split by
spawning a FlowFile
- while (reader.hasNext()) {
+ final AtomicReference<Boolean> hasNextHolder = new
AtomicReference<Boolean>(reader.hasNext());
--- End diff --
Yeah, you right and in the end it's more of a stylistic comment. So, I am
good.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---