diff options
author | Heyang Zhou <zhy20000919@hotmail.com> | 2023-12-23 01:19:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-23 01:19:17 +0800 |
commit | 140e8becd0cd3a0183c3f28f6ce3812ebcd76036 (patch) | |
tree | ac09274fd59ae2a8b62c13abfe191e5a1f0e3ec5 /ext/kv/remote.rs | |
parent | cdbf902499dc62a4fb9f8cbf2a47a7b446623929 (diff) |
feat(unstable): only allow http2 for kv remote backend (#21616)
Diffstat (limited to 'ext/kv/remote.rs')
-rw-r--r-- | ext/kv/remote.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/kv/remote.rs b/ext/kv/remote.rs index 855b091fa..ceda24528 100644 --- a/ext/kv/remote.rs +++ b/ext/kv/remote.rs @@ -137,7 +137,7 @@ impl<P: RemoteDbHandlerPermissions + 'static> DatabaseHandler client_cert_chain_and_key: options.client_cert_chain_and_key.clone(), pool_max_idle_per_host: None, pool_idle_timeout: None, - http1: true, + http1: false, http2: true, }, )?; |