We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 175bf51 commit d82b00dCopy full SHA for d82b00d
src/clients.rs
@@ -290,10 +290,8 @@ pub async fn create_grpc_client<C: Debug + Clone>(
290
.await
291
.unwrap_or_else(|error| panic!("error reading key from {key_path:?}: {error}"));
292
let identity = tonic::transport::Identity::from_pem(cert_pem, key_pem);
293
- // assume_http2 added ref. https://github.com/hyperium/tonic/issues/1427
294
let mut client_tls_config = tonic::transport::ClientTlsConfig::new()
295
.identity(identity)
296
- .assume_http2(true)
297
.with_native_roots()
298
.with_webpki_roots();
299
if let Some(client_ca_cert_path) = &tls_config.client_ca_cert_path {
0 commit comments