Repository: kafka Updated Branches: refs/heads/0.11.0 176ff0d69 -> 6bfc3d252
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/6bfc3d25 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/6bfc3d25 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/6bfc3d25 Branch: refs/heads/0.11.0 Commit: 6bfc3d2522eb4bac084c5cdd61f51f72922c3ceb Parents: 176ff0d 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:17 2017 +0100 ---------------------------------------------------------------------- docs/security.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/6bfc3d25/docs/security.html ---------------------------------------------------------------------- diff --git a/docs/security.html b/docs/security.html index dab00dd..7d92ec3 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
