ruanhang1993 commented on code in PR #3558: URL: https://github.com/apache/flink-cdc/pull/3558#discussion_r1724437471
########## flink-cdc-runtime/src/main/java/org/apache/flink/cdc/runtime/operators/schema/coordinator/SchemaRegistry.java: ########## @@ -275,6 +277,8 @@ public void resetToCheckpoint(long checkpointId, @Nullable byte[] checkpointData throw new IOException( "Unrecognized serialization version " + schemaManagerSerializerVersion); } + } catch (Throwable throwable) { + context.failJob(throwable); Review Comment: why not re-throw this `throwable` here? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org