You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throwError('To enable client authentication, you must enabled TLS-encrypted traffic between clients and brokers.');
484
+
thrownewcore.ValidationError('To enable client authentication, you must enabled TLS-encrypted traffic between clients and brokers.',this);
485
485
}elseif(
486
486
props.encryptionInTransit?.clientBroker===
487
487
ClientBrokerEncryption.TLS_PLAINTEXT&&
488
488
(props.clientAuthentication?.saslProps?.scram||
489
489
props.clientAuthentication?.saslProps?.iam)
490
490
){
491
-
throwError(
492
-
'To enable SASL/SCRAM or IAM authentication, you must only allow TLS-encrypted traffic between clients and brokers.',
493
-
);
491
+
thrownewcore.ValidationError('To enable SASL/SCRAM or IAM authentication, you must only allow TLS-encrypted traffic between clients and brokers.',this);
0 commit comments