Skip to content

Commit

Permalink
Allow all iceberg exceptions to be fault tolerant
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-moseley committed Aug 22, 2022
1 parent d4510fd commit 867d496
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -870,8 +870,6 @@ public void flush(String dbName, String tableName) throws IOException {
} else {
log.info("There's no transaction initiated for the table {}", tid.toString());
}
} catch (RuntimeException e) {
throw new RuntimeException(String.format("Fail to flush table %s %s", dbName, tableName), e);
} catch (Exception e) {
throw new IOException(String.format("Fail to flush table %s %s", dbName, tableName), e);
} finally {
Expand Down

0 comments on commit 867d496

Please sign in to comment.