Skip to content

Commit

Permalink
Fix for issue apache#4714
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Casters committed Dec 16, 2024
1 parent fe080d9 commit d4b5be4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public boolean processRow() throws HopException {
try (InputStream inputStream = HopVfs.getInputStream(filename, variables)) {
GenericDatumReader<GenericRecord> datumReader = new GenericDatumReader<>();
DataFileStream<GenericRecord> fileStream = new DataFileStream<>(inputStream, datumReader);
while (fileStream.hasNext()) {
while (fileStream.hasNext() && !isStopped()) {
GenericRecord genericRecord = fileStream.next();
incrementLinesInput();

Expand Down

0 comments on commit d4b5be4

Please sign in to comment.