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
In the current pulsar crate, it is mentioned as a feature: TLS connection,
but when using fn with_auth() of the Struct pulsar::producer::Producer::Builder, it does not support TLS Authentication.
The current Authentication support:pub struct Authentication { /// Authentication kid. Use "token" for JWT pub name: String, /// Authentication data pub data: Vec<u8>, }
coming from connection.rs of the crate
Is there a way to use a TLS Authentication method, because there is no clear way to do so as for now
The text was updated successfully, but these errors were encountered:
@jmanno01 could you elaborate on what TLS Authenticatin means? 'with_certificate_chain()' method should be used for tls authentication for the client. Authentication in the crate refers to "authenticating" user such as jwt or Oauth2
The client being able to validate the server certificate is already supported through with_certificate_chain().
But the client still can't provide it's certificate and private key to the server.
In the current
pulsar crate
, it is mentioned as a feature:TLS connection
,but when using
fn with_auth()
of theStruct pulsar::producer::Producer::Builder
, it does not supportTLS Authentication
.The current Authentication support:
pub struct Authentication { /// Authentication kid. Use "token" for JWT pub name: String, /// Authentication data pub data: Vec<u8>, }
coming from
connection.rs
of the crateIs there a way to use a
TLS Authentication
method, because there is no clear way to do so as for nowThe text was updated successfully, but these errors were encountered: