Open kwonglau opened 2 years ago
https://github.com/eventuate-foundation/eventuate-cdc/blob/master/eventuate-local-java-cdc-connector-common/src/main/java/io/eventuate/local/common/BinlogEntryReader.java#L135
e.getMessage() could be null and it is causing NPE. As a result, the following are not called.
stopCountDownLatch.countDown(); throw new RuntimeException(e);
@dartartem processingError should probably be Optional<Throwable>
processingError
Optional<Throwable>
@cer thank you, I will investigate
https://github.com/eventuate-foundation/eventuate-cdc/blob/master/eventuate-local-java-cdc-connector-common/src/main/java/io/eventuate/local/common/BinlogEntryReader.java#L135
e.getMessage() could be null and it is causing NPE. As a result, the following are not called.