Github user joewitt commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/1682#discussion_r112307821
  
    --- Diff: 
nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/avro/AvroReader.java
 ---
    @@ -19,31 +19,47 @@
     
     import java.io.IOException;
     import java.io.InputStream;
    +import java.util.ArrayList;
    +import java.util.List;
     
     import org.apache.nifi.annotation.documentation.CapabilityDescription;
     import org.apache.nifi.annotation.documentation.Tags;
    -import org.apache.nifi.controller.AbstractControllerService;
    +import org.apache.nifi.components.AllowableValue;
     import org.apache.nifi.flowfile.FlowFile;
     import org.apache.nifi.logging.ComponentLog;
    +import org.apache.nifi.schema.access.SchemaNotFoundException;
     import org.apache.nifi.serialization.MalformedRecordException;
     import org.apache.nifi.serialization.RecordReader;
    -import org.apache.nifi.serialization.RowRecordReaderFactory;
    -import org.apache.nifi.serialization.record.RecordSchema;
    +import org.apache.nifi.serialization.RecordReaderFactory;
    +import org.apache.nifi.serialization.SchemaRegistryService;
     
     @Tags({"avro", "parse", "record", "row", "reader", "delimited", "comma", 
"separated", "values"})
     @CapabilityDescription("Parses Avro data and returns each Avro record as 
an separate Record object. The Avro data must contain "
    --- End diff --
    
    this description needs to be updated it appears since now the schema may 
either reside in the data or be provided by reference


---
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.
---

Reply via email to