Skip to content

Commit

Permalink
fix failed CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hangc0276 committed Mar 4, 2023
1 parent 5ef84fe commit 8185356
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 static void bestEffortRemoveFromPageCache(int fd, long offset, long len)
}
try {
NATIVE_IO.posix_fadvise(fd, offset, len, POSIX_FADV_DONTNEED);
} catch (Exception e) {
} catch (Throwable e) {
log.warn("Failed to perform posix_fadvise: {}", e.getMessage());
fadvisePossible = false;
}
Expand Down

0 comments on commit 8185356

Please sign in to comment.