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)