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 0c28a26 commit 3e7c3b8Copy full SHA for 3e7c3b8
cw-orch-daemon/Cargo.toml
@@ -8,7 +8,7 @@ license = { workspace = true }
8
name = "cw-orch-daemon"
9
readme = "../README.md"
10
repository = { workspace = true }
11
-version = "0.29.0"
+version = "0.29.1"
12
13
exclude = [".env"]
14
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