diff --git a/debezium-core/src/main/java/io/debezium/connector/common/BaseSourceTask.java b/debezium-core/src/main/java/io/debezium/connector/common/BaseSourceTask.java index b39663722..b49667129 100644 --- a/debezium-core/src/main/java/io/debezium/connector/common/BaseSourceTask.java +++ b/debezium-core/src/main/java/io/debezium/connector/common/BaseSourceTask.java @@ -343,7 +343,7 @@ private void updateLastOffset(Map partition, Map lastOffse protected void resetErrorHandlerRetriesIfNeeded(List records) { // When a connector throws a retriable error, the task is not re-created and instead the previous // error handler is passed into the new error handler, propagating the retry count. This method - // allows resetting that counter when a successful poll iteration step contains new records so that when a + // allows resetting that counter when a successful poll iteration step contains new records so that when a // future failure is thrown, the maximum retry count can be utilized. if (!records.isEmpty() && coordinator.getErrorHandler().getRetries() > 0) { coordinator.getErrorHandler().resetRetries();