Skip to content

Commit

Permalink
Fix incorrect error message
Browse files Browse the repository at this point in the history
  • Loading branch information
algesten committed Jan 31, 2025
1 parent 5cb17e8 commit 48fb89b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tls/rustls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ fn build_config(tls_config: &TlsConfig) -> Arc<ClientConfig> {

#[cfg(not(feature = "_ring"))]
fn ring_if_enabled() -> Arc<CryptoProvider> {
panic!("No CryptoProvider for Rustls. Enable the feature `ring` or configure the Agent.");
panic!("No CryptoProvider for Rustls. Enable feature `rustls` or configure the Agent mangually.");
}

let builder = ClientConfig::builder_with_provider(provider.clone())
Expand Down

0 comments on commit 48fb89b

Please sign in to comment.