Skip to content

Commit

Permalink
[hotfix][mysql] Catch underlying throwable in snapshot reading.
Browse files Browse the repository at this point in the history
This closes #apache#2362.
Co-authored-by: TJX2014 <tangjinxin@deepexi.com>
  • Loading branch information
TJX2014 authored Aug 14, 2023
1 parent b8f468e commit 094fff4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public void submitSplit(MySqlSplit mySqlSplit) {
"Read snapshot for mysql split %s fail",
currentSnapshotSplit)));
}
} catch (Exception e) {
} catch (Throwable e) {
setReadException(e);
}
});
Expand Down

0 comments on commit 094fff4

Please sign in to comment.