pprovenzano commented on code in PR #13374:
URL: https://github.com/apache/kafka/pull/13374#discussion_r1136321240


##########
clients/src/main/java/org/apache/kafka/common/security/scram/internals/ScramMechanism.java:
##########
@@ -40,11 +42,13 @@ public enum ScramMechanism {
         MECHANISMS_MAP = Collections.unmodifiableMap(map);
     }
 
-    ScramMechanism(String hashAlgorithm, String macAlgorithm, int 
minIterations) {
+    ScramMechanism(byte type, String hashAlgorithm, String macAlgorithm, int 
minIterations, int maxIterations) {
+        this.type = type;
         this.mechanismName = "SCRAM-" + hashAlgorithm;
         this.hashAlgorithm = hashAlgorithm;
-        this.macAlgorithm = macAlgorithm;
+        this.macAlgorithm  = macAlgorithm;

Review Comment:
   Fixed



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to