Repository: kafka Updated Branches: refs/heads/1.0 91eb178e9 -> 072fb8d67
MINOR: Add missing semicolon to example jaas configuration Author: Manikumar Reddy <[email protected]> Reviewers: Rajini Sivaram <[email protected]>, Ismael Juma <[email protected]> Closes #4101 from omkreddy/SCRAM-DOCS (cherry picked from commit adb9d5ae7671c5befa615e369c97a701d7dfb58b) Signed-off-by: Ismael Juma <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/072fb8d6 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/072fb8d6 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/072fb8d6 Branch: refs/heads/1.0 Commit: 072fb8d67b63b67b8fe3a1823f90eaff0c4c8bad Parents: 91eb178 Author: Manikumar Reddy <[email protected]> Authored: Thu Oct 26 14:24:29 2017 +0100 Committer: Ismael Juma <[email protected]> Committed: Thu Oct 26 14:25:06 2017 +0100 ---------------------------------------------------------------------- docs/security.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/072fb8d6/docs/security.html ---------------------------------------------------------------------- diff --git a/docs/security.html b/docs/security.html index 3e469b2..8c1bda9 100644 --- a/docs/security.html +++ b/docs/security.html @@ -563,7 +563,7 @@ KafkaServer { org.apache.kafka.common.security.scram.ScramLoginModule required username="admin" - password="admin-secret" + password="admin-secret"; };</pre> The properties <tt>username</tt> and <tt>password</tt> in the <tt>KafkaServer</tt> section are used by the broker to initiate connections to other brokers. In this example, <i>admin</i> is the user for
