From be368e18d74a72480fdaefa7816628c04cf6a6bd Mon Sep 17 00:00:00 2001 From: Jiri Pechanec Date: Thu, 27 Jun 2024 12:04:49 +0200 Subject: [PATCH] DBZ-7964 Fix formatting --- .../main/java/io/debezium/connector/common/BaseSourceTask.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();