Skip to content

Commit

Permalink
fix blobstore fallback (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andyz26 authored Sep 9, 2024
1 parent fa55cb1 commit 1e29767
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public File get(URI blobUrl) throws IOException {
{
return blobStore.get(blobUrl);
}
catch (IOException e) {
catch (Exception e) {
log.error("Get blob error, fallback to next blobstore", e);
}

Expand Down

0 comments on commit 1e29767

Please sign in to comment.