mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
feat(unstable): only allow http2 for kv remote backend (#21616)
This commit is contained in:
parent
cdbf902499
commit
140e8becd0
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
},
|
||||
)?;
|
||||
|
|
Loading…
Reference in a new issue