1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 08:33:43 -05:00

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 Bartek Iwańczuk
parent fa60ed1a8d
commit 16550f0825
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750

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