Skip to content

Commit

Permalink
fix bad semicolon after merge
Browse files Browse the repository at this point in the history
Signed-off-by: technillogue <[email protected]>
  • Loading branch information
technillogue committed Jul 19, 2023
1 parent 5f61242 commit 0c15c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/src/backend/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ impl Connection {
let mut cb = Client::builder()
.timeout(timeout)
.connect_timeout(connect_timeout)
.redirect(Policy::none());
.redirect(Policy::none())
.use_rustls_tls()
.tcp_keepalive(Some(Duration::from_secs(5 * 60)))
.pool_max_idle_per_host(pool_max_idle_per_host);
Expand Down

0 comments on commit 0c15c0d

Please sign in to comment.