This repository was archived by the owner on Oct 21, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
frontend/src/widgets/ClusterConfigForm/utils Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ const JAAS_CONFIGS = {
99 'org.apache.kafka.common.security.scram.ScramLoginModule' ,
1010 'SASL/LDAP' : 'org.apache.kafka.common.security.plain.PlainLoginModule' ,
1111 'SASL/AWS IAM' : 'software.amazon.msk.auth.iam.IAMLoginModule' ,
12- 'SASL/Azure Entra' : 'org.apache.kafka.common.security.oauthbearer.OAuthBearerLoginModule' ,
12+ 'SASL/Azure Entra' :
13+ 'org.apache.kafka.common.security.oauthbearer.OAuthBearerLoginModule' ,
1314} ;
1415
1516type MethodName = keyof typeof JAAS_CONFIGS ;
Original file line number Diff line number Diff line change @@ -219,7 +219,8 @@ export const transformFormDataToPayload = (data: ClusterConfigFormValues) => {
219219 config . properties = {
220220 'security.protocol' : securityProtocol ,
221221 'sasl.mechanism' : 'OAUTHBEARER' ,
222- 'sasl.client.callback.handler.class' : 'io.kafbat.ui.sasl.azure.entra.AzureEntraLoginCallbackHandler' ,
222+ 'sasl.client.callback.handler.class' :
223+ 'io.kafbat.ui.sasl.azure.entra.AzureEntraLoginCallbackHandler' ,
223224 'sasl.jaas.config' : getJaasConfig ( 'SASL/Azure Entra' , { } ) ,
224225 } ;
225226 break ;
You can’t perform that action at this time.
0 commit comments