Skip to content

Commit 86bc203

Browse files
committed
run cargo fmt
1 parent d24a060 commit 86bc203

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion-postgres/src/handlers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ impl DfSessionService {
141141
// Use a hash of PID, secret key, and socket address for better uniqueness
142142
let (pid, secret) = client.pid_and_secret_key();
143143
let socket_addr = client.socket_addr();
144-
144+
145145
// Create a hash of all identifying values
146146
let mut hasher = std::collections::hash_map::DefaultHasher::new();
147147
pid.hash(&mut hasher);
148148
secret.hash(&mut hasher);
149149
socket_addr.hash(&mut hasher);
150-
150+
151151
let conn_id = hasher.finish();
152152
conn_id
153153
}

0 commit comments

Comments
 (0)