-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allow SASL handshake version to be influenced from config
why: current kaf uses the older SASL handshake v0, where the SASL payload is sent unframed down the wire. v1 uses the dedicated SASL Kafka RPCs. This feature allows the user to opt for the v1. The default remains as v0.
- Loading branch information
Showing
3 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
clusters: | ||
- name: test | ||
brokers: | ||
- localhost:9092 | ||
SASL: | ||
mechanism: PLAIN | ||
username: admin | ||
password: mypasswordisnotsosimple | ||
version: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters