Skip to content

Commit 1e93543

Browse files
committed
Fix lint
1 parent b7983cf commit 1e93543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/corro-pg/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ pub async fn start(
524524
Outcome::Completed(res) => res?,
525525
Outcome::Preempted(_) => break,
526526
};
527-
let mut conn = CountedTcpStream::wrap(tcp_conn, conn_gauge.clone());
527+
let conn = CountedTcpStream::wrap(tcp_conn, conn_gauge.clone());
528528
let tls_acceptor = tls_acceptor.clone();
529529
debug!("Accepted a PostgreSQL connection (from: {remote_addr})");
530530

0 commit comments

Comments
 (0)