Skip to content

Commit c456d2c

Browse files
committed
Reenable postgres-native-tls
1 parent 2a2b76d commit c456d2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
members = [
33
"codegen",
44
"postgres",
5-
# "postgres-native-tls",
5+
"postgres-native-tls",
66
"postgres-openssl",
77
"postgres-protocol",
88
"tokio-postgres",

postgres-native-tls/src/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ where
1212
T: TlsConnect<TcpStream>,
1313
T::Stream: 'static + Send,
1414
{
15-
let stream = TcpStream::connect(&"127.0.0.1:5433".parse().unwrap())
15+
let stream = TcpStream::connect("127.0.0.1:5433")
1616
.await
1717
.unwrap();
1818

0 commit comments

Comments
 (0)