From cbbeccad632d37c131bfa494fdb2eabc5df7610d Mon Sep 17 00:00:00 2001 From: TengYao Chi Date: Mon, 13 Jan 2025 19:13:10 +0800 Subject: [PATCH] MINOR: Remove unnecessary < from Errant Record Reporter section (#18498) Reviewers: Mickael Maison --- docs/connect.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/connect.html b/docs/connect.html index 16cbf0f39ea..f77e21bdf54 100644 --- a/docs/connect.html +++ b/docs/connect.html @@ -766,7 +766,7 @@ public List<SourceRecord> poll() throws InterruptedException {

When error reporting is enabled for a connector, the connector can use an ErrantRecordReporter to report problems with individual records sent to a sink connector. The following example shows how a connector's SinkTask subclass might obtain and use the ErrantRecordReporter, safely handling a null reporter when the DLQ is not enabled or when the connector is installed in an older Connect runtime that doesn't have this reporter feature:

- <
private ErrantRecordReporter reporter;
+    
private ErrantRecordReporter reporter;
 
 @Override
 public void start(Map<String, String> props) {