You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tw...@apache.org on 2018/09/26 08:39:41 UTC

[flink] branch master updated: [hotfix] [docs] Add double quotes to Kafka version YAML examples

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

twalthr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 7fadbeb  [hotfix] [docs] Add double quotes to Kafka version YAML examples
7fadbeb is described below

commit 7fadbeb3c7b5ca295c870d8658492c7b1024b53c
Author: yangshimin <ya...@youzan.com>
AuthorDate: Thu Aug 30 13:47:59 2018 +0800

    [hotfix] [docs] Add double quotes to Kafka version YAML examples
    
    This closes #6639.
---
 docs/dev/table/connect.md   | 2 +-
 docs/dev/table/sqlClient.md | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/dev/table/connect.md b/docs/dev/table/connect.md
index 16649e5..f79dd93 100644
--- a/docs/dev/table/connect.md
+++ b/docs/dev/table/connect.md
@@ -548,7 +548,7 @@ The Kafka connector allows for reading and writing from and to an Apache Kafka t
 {% highlight yaml %}
 connector:
   type: kafka
-  version: 0.11       # required: valid connector versions are "0.8", "0.9", "0.10", and "0.11"
+  version: "0.11"     # required: valid connector versions are "0.8", "0.9", "0.10", and "0.11"
   topic: ...          # required: topic name from which the table is read
 
   properties:         # optional: connector specific properties
diff --git a/docs/dev/table/sqlClient.md b/docs/dev/table/sqlClient.md
index 5224842..a2a7dd0 100644
--- a/docs/dev/table/sqlClient.md
+++ b/docs/dev/table/sqlClient.md
@@ -289,7 +289,7 @@ tables:
     connector:
       property-version: 1
       type: kafka
-      version: 0.11
+      version: "0.11"
       topic: TaxiRides
       startup-mode: earliest-offset
       properties:
@@ -432,7 +432,7 @@ tables:
     connector:
       property-version: 1
       type: kafka
-      version: 0.11
+      version: "0.11"
       topic: OutputTopic
       properties:
         - key: zookeeper.connect