You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by kk...@apache.org on 2022/05/25 17:47:20 UTC

[kafka] branch 3.0 updated: MINOR: Replace left single quote with single quote in Connect worker's log message (#12201)

This is an automated email from the ASF dual-hosted git repository.

kkarantasis pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/3.0 by this push:
     new 87d6d78913 MINOR: Replace left single quote with single quote in Connect worker's log message (#12201)
87d6d78913 is described below

commit 87d6d78913d4559aad6fb4c2ea19a0b8449a9ab9
Author: nicolasguyomar <ni...@gmail.com>
AuthorDate: Wed May 25 19:40:46 2022 +0200

    MINOR: Replace left single quote with single quote in Connect worker's log message (#12201)
    
    Minor change to use ' and not LEFT SINGLE QUOTATION MARK in this log message, as it's the only place we are using such a quote and it can break ingestion pipelines
    
    Reviewers: Kvicii <Ka...@gmail.com>, Divij Vaidya <di...@amazon.com>, Konstantine Karantasis <k....@gmail.com>
---
 .../runtime/src/main/java/org/apache/kafka/connect/runtime/Worker.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/Worker.java b/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/Worker.java
index 225fa7ff1f..4c86745f9e 100644
--- a/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/Worker.java
+++ b/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/Worker.java
@@ -406,7 +406,7 @@ public class Worker {
             }
 
             if (!connector.awaitShutdown(timeout)) {
-                log.error("Connector ‘{}’ failed to properly shut down, has become unresponsive, and "
+                log.error("Connector '{}' failed to properly shut down, has become unresponsive, and "
                         + "may be consuming external resources. Correct the configuration for "
                         + "this connector or remove the connector. After fixing the connector, it "
                         + "may be necessary to restart this worker to release any consumed "