Skip to content

Commit fbc42ec

Browse files
committed
Stop setting timezone to UTC
Closes sfackler#147
1 parent 316c6dc commit fbc42ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tokio-postgres/src/connect_raw.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ where
111111
S: AsyncRead + AsyncWrite + Unpin,
112112
T: AsyncRead + AsyncWrite + Unpin,
113113
{
114-
let mut params = vec![("client_encoding", "UTF8"), ("timezone", "UTC")];
114+
let mut params = vec![("client_encoding", "UTF8")];
115115
if let Some(user) = &config.user {
116116
params.push(("user", &**user));
117117
}

0 commit comments

Comments
 (0)