Skip to content

Commit

Permalink
Remove ununsed SASL mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
lijamie98 committed Sep 12, 2024
1 parent 18afc94 commit d4f86d4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,7 @@ public enum SecurityProtocol {
}

public enum SaslMechanism {
PLAIN("PLAIN"),
SCRAM_SHA_256("SCRAM-SHA-256"),
SCRAM_SHA_512("SCRAM-SHA-512"),
GSSAPI("GSSAPI"),
OAUTHBEARER("OAUTHBEARER"),
AWS_MSK_IAM("AWS_MSK_IAM");
PLAIN("PLAIN");

String value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -690,11 +690,6 @@ events:
# The SASL mechanism used for authentication and must match what is used on the broker.
# `sasl_mechanism` can be one of the following supported mechanisms:
# `PLAIN`: PLAIN SASL mechanism
# `SCRAM-SHA-256`: SCRAM-SHA-256 SASL mechanism
# `SCRAM-SHA-512`: SCRAM-SHA-512 SASL mechanism
# `GSSAPI`: GSSAPI SASL mechanism
# `OAUTHBEARER`: OAUTHBEARER SASL mechanism
# ` AWS_MSK_IAM`: AWS MSK IAM SASL mechanism
sasl_mechanism: PLAIN

# If the value of `publisher.type` is "sqs", the `events.publisher.sqs` field must be defined.
Expand Down

0 comments on commit d4f86d4

Please sign in to comment.