From c7872d3f6d87687850028d92eeea6669fa19efa4 Mon Sep 17 00:00:00 2001 From: Vadim Kharitonov Date: Wed, 24 May 2023 14:18:32 +0200 Subject: [PATCH] Make clippy happy --- proxy/src/http/sql_over_http.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/http/sql_over_http.rs b/proxy/src/http/sql_over_http.rs index cf1086f81c..c2d857a37b 100644 --- a/proxy/src/http/sql_over_http.rs +++ b/proxy/src/http/sql_over_http.rs @@ -201,7 +201,7 @@ pub async fn handle( // Connenct to the destination // let (client, connection) = tokio_postgres::Config::new() - .host(&host) + .host(host) .port(port) .user(&username) .password(&password)