Repository: kafka Updated Branches: refs/heads/trunk 070ec0fc5 -> adb9d5ae7
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 Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/adb9d5ae Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/adb9d5ae Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/adb9d5ae Branch: refs/heads/trunk Commit: adb9d5ae7671c5befa615e369c97a701d7dfb58b Parents: 070ec0f Author: Manikumar Reddy <[email protected]> Authored: Thu Oct 26 14:24:29 2017 +0100 Committer: Ismael Juma <[email protected]> Committed: Thu Oct 26 14:24:29 2017 +0100 ---------------------------------------------------------------------- docs/security.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/adb9d5ae/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
