Repository: kafka
Updated Branches:
  refs/heads/0.9.0 c355f0c35 -> 3e1290c69


Minor: fix sasl.kerberos.service.name

sasl.kerberos.service.name surround by double quote didn't work, have to remove.

Author: BINLEI XUE <[email protected]>

Reviewers: Gwen Shapira

Closes #720 from secjex/patch-1


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/3e1290c6
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/3e1290c6
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/3e1290c6

Branch: refs/heads/0.9.0
Commit: 3e1290c6928a6001263acfd7181bd768b231afc0
Parents: c355f0c
Author: BINLEI XUE <[email protected]>
Authored: Wed Dec 30 08:00:43 2015 -0800
Committer: Gwen Shapira <[email protected]>
Committed: Fri Jan 8 18:33:38 2016 -0800

----------------------------------------------------------------------
 docs/security.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/3e1290c6/docs/security.html
----------------------------------------------------------------------
diff --git a/docs/security.html b/docs/security.html
index 6307207..3acbbac 100644
--- a/docs/security.html
+++ b/docs/security.html
@@ -231,7 +231,7 @@ Apache Kafka allows clients to connect over SSL. By default 
SSL is disabled but
 
         We must also configure the service name in server.properties, which 
should match the principal name of the kafka brokers. In the above example, 
principal is "kafka/[email protected]", so:
         <pre>
-    sasl.kerberos.service.name="kafka"</pre>
+    sasl.kerberos.service.name=kafka</pre>
 
         <u>Important notes:</u>
         <ol>
@@ -270,7 +270,7 @@ Apache Kafka allows clients to connect over SSL. By default 
SSL is disabled but
             <li>Configure the following properties in producer.properties or 
consumer.properties:
                 <pre>
     security.protocol=SASL_PLAINTEXT (or SASL_SSL)
-    sasl.kerberos.service.name="kafka"</pre>
+    sasl.kerberos.service.name=kafka</pre>
             </li>
         </ol></li>
 </ol>

Reply via email to