DBZ-7937 Add exception stack trace when engine fails to commit offset

This commit is contained in:
Vojtech Juranek 2024-06-10 10:39:34 +02:00 committed by Jiri Pechanec
parent b3eaab178b
commit 8662f7ddd8

View File

@ -807,7 +807,7 @@ private static boolean commitOffsets(final OffsetStorageWriter offsetWriter, fin
throw e;
}
catch (ExecutionException | TimeoutException e) {
LOGGER.warn("Flush of the offsets failed, canceling the flush.");
LOGGER.warn("Flush of the offsets failed, canceling the flush.", e);
offsetWriter.cancelFlush();
return false;
}