feat(unstable): only allow http2 for kv remote backend (#21616)

This commit is contained in:
Heyang Zhou 2023-12-23 01:19:17 +08:00 committed by GitHub
parent cdbf902499
commit 140e8becd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
},
)?;