Skip to content

Commit

Permalink
Gcsio migration (#29360) (#29465)
Browse files Browse the repository at this point in the history
  • Loading branch information
jto authored Nov 17, 2023
1 parent a4d6135 commit 65ddc34
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ public InputStatus pollNext(ReaderOutput<WindowedValue<ValueWithRecordId<T>>> ou
if (reader != null) {
emitRecord(reader, output);
return InputStatus.MORE_AVAILABLE;
} else if (noMoreSplits()) {
LOG.trace("No more splits.");
return InputStatus.END_OF_INPUT;
} else {
LOG.trace("No data available for now.");
return InputStatus.NOTHING_AVAILABLE;
Expand Down

0 comments on commit 65ddc34

Please sign in to comment.