File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
postgres-protocol/src/authentication Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ impl ScramSha256 {
257
257
return Err ( io:: Error :: new (
258
258
io:: ErrorKind :: Other ,
259
259
format ! ( "SCRAM error: {}" , e) ,
260
- ) )
260
+ ) ) ;
261
261
}
262
262
ServerFinalMessage :: Verifier ( verifier) => verifier,
263
263
} ;
Original file line number Diff line number Diff line change 1
1
use fallible_iterator:: FallibleIterator ;
2
2
use futures:: { Async , Future , Poll , Stream } ;
3
3
use std:: io:: { self , Read } ;
4
+ use tokio_postgres:: tls:: { MakeTlsConnect , TlsConnect } ;
4
5
use tokio_postgres:: types:: { ToSql , Type } ;
5
6
use tokio_postgres:: Error ;
6
7
#[ cfg( feature = "runtime" ) ]
7
- use tokio_postgres:: { Socket } ;
8
- use tokio_postgres:: tls:: { MakeTlsConnect , TlsConnect } ;
8
+ use tokio_postgres:: Socket ;
9
9
10
10
#[ cfg( feature = "runtime" ) ]
11
11
use crate :: Config ;
You can’t perform that action at this time.
0 commit comments