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.
2 parents 168be85 + 3e7c3b8 commit 28fb3faCopy full SHA for 28fb3fa
cw-orch-daemon/src/channel.rs
@@ -25,7 +25,12 @@ impl GrpcChannel {
25
let uri = Uri::from_maybe_shared(address.clone()).expect("Invalid URI");
26
27
let maybe_channel = Endpoint::from(uri)
28
- .tls_config(ClientTlsConfig::new().with_enabled_roots())
+ .tls_config(
29
+ ClientTlsConfig::new()
30
+ .with_enabled_roots()
31
+ // grpcs are http/2 by spec
32
+ .assume_http2(true),
33
+ )
34
.unwrap()
35
.connect()
36
.await;
0 commit comments