Skip to content

Commit

Permalink
fix based on CR
Browse files Browse the repository at this point in the history
  • Loading branch information
loserwang1024 committed Aug 21, 2024
1 parent 521687e commit 93ae49c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,9 @@ public void resetToCheckpoint(long checkpointId, @Nullable byte[] checkpointData
throw new IOException(
"Unrecognized serialization version " + schemaManagerSerializerVersion);
}
} catch (Throwable throwable) {
context.failJob(throwable);
} catch (Throwable t) {
context.failJob(t);
throw t;
}
}

Expand Down

0 comments on commit 93ae49c

Please sign in to comment.