Skip to content

Commit

Permalink
feat(unstable): only allow http2 for kv remote backend (#21616)
Browse files Browse the repository at this point in the history
  • Loading branch information
losfair authored Dec 22, 2023
1 parent cdbf902 commit 140e8be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/kv/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
)?;
Expand Down

0 comments on commit 140e8be

Please sign in to comment.