Skip to content

Commit

Permalink
[hotfix][runtime] Remove never thrown IOException for ContinuousFileM…
Browse files Browse the repository at this point in the history
…onitoringFunction#listEligibleFiles

This closes apache#12005
  • Loading branch information
zhengcanbin authored and rmetzger committed Sep 4, 2020
1 parent 5cce765 commit 12b9f7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ private Map<Long, List<TimestampedFileInputSplit>> getInputSplitsSortedByModTime
* Returns the paths of the files not yet processed.
* @param fileSystem The filesystem where the monitored directory resides.
*/
private Map<Path, FileStatus> listEligibleFiles(FileSystem fileSystem, Path path) throws IOException {
private Map<Path, FileStatus> listEligibleFiles(FileSystem fileSystem, Path path) {

final FileStatus[] statuses;
try {
Expand Down

0 comments on commit 12b9f7f

Please sign in to comment.