You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ch...@apache.org on 2020/10/29 02:10:22 UTC

[kafka] branch trunk updated: MINOR: Fix documentation for KIP-585 (#9524)

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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new 51c8c69  MINOR: Fix documentation for KIP-585 (#9524)
51c8c69 is described below

commit 51c8c69e3a039f41b85912469207bd11a56bb04d
Author: Alexander Iskuskov <is...@gmail.com>
AuthorDate: Thu Oct 29 05:08:00 2020 +0300

    MINOR: Fix documentation for KIP-585 (#9524)
    
    Reviewers: Chia-Ping Tsai <ch...@gmail.com>
---
 docs/connect.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/connect.html b/docs/connect.html
index 797c1fe..ef4cfe9 100644
--- a/docs/connect.html
+++ b/docs/connect.html
@@ -219,7 +219,7 @@
         transforms.Filter.predicate=IsFoo
 
         predicates=IsFoo
-        predicates.IsFoo.type=org.apache.kafka.connect.predicates.TopicNameMatches
+        predicates.IsFoo.type=org.apache.kafka.connect.transforms.predicates.TopicNameMatches
         predicates.IsFoo.pattern=foo
     </pre>
         
@@ -236,10 +236,10 @@
         transforms.Extract.negate=true
 
         predicates=IsFoo,IsBar
-        predicates.IsFoo.type=org.apache.kafka.connect.predicates.TopicNameMatches
+        predicates.IsFoo.type=org.apache.kafka.connect.transforms.predicates.TopicNameMatches
         predicates.IsFoo.pattern=foo
 
-        predicates.IsBar.type=org.apache.kafka.connect.predicates.TopicNameMatches
+        predicates.IsBar.type=org.apache.kafka.connect.transforms.predicates.TopicNameMatches
         predicates.IsBar.pattern=bar
     </pre>