File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ where
201
201
202
202
let mut locked = self . inner . internals . lock ( ) ;
203
203
match conn {
204
- Some ( conn) => locked. put ( conn, None ) ,
204
+ Some ( conn) => locked. put ( conn, None , self . inner . clone ( ) ) ,
205
205
None => {
206
206
let approvals = locked. dropped ( 1 , & self . inner . statics ) ;
207
207
self . spawn_replenishing_approvals ( approvals) ;
@@ -243,7 +243,10 @@ where
243
243
match conn {
244
244
Ok ( conn) => {
245
245
let conn = Conn :: new ( conn) ;
246
- shared. internals . lock ( ) . put ( conn, Some ( approval) ) ;
246
+ shared
247
+ . internals
248
+ . lock ( )
249
+ . put ( conn, Some ( approval) , self . inner . clone ( ) ) ;
247
250
return Ok ( ( ) ) ;
248
251
}
249
252
Err ( e) => {
Original file line number Diff line number Diff line change 61
61
. map ( |idle| ( idle. conn , self . wanted ( config) ) )
62
62
}
63
63
64
- pub ( crate ) fn put ( & mut self , conn : Conn < M :: Connection > , approval : Option < Approval > ) {
64
+ pub ( crate ) fn put (
65
+ & mut self ,
66
+ conn : Conn < M :: Connection > ,
67
+ approval : Option < Approval > ,
68
+ pool : Arc < SharedPool < M > > ,
69
+ ) {
65
70
if approval. is_some ( ) {
66
71
self . pending_conns -= 1 ;
67
72
self . num_conns += 1 ;
70
75
let queue_strategy = pool. statics . queue_strategy ;
71
76
72
77
// Queue it in the idle queue
73
- let conn = IdleConn :: from ( guard . conn . take ( ) . unwrap ( ) ) ;
78
+ let conn = IdleConn :: from ( conn) ;
74
79
match queue_strategy {
75
80
QueueStrategy :: Fifo => self . conns . push_back ( conn) ,
76
81
QueueStrategy :: Lifo => self . conns . push_front ( conn) ,
You can’t perform that action at this time.
0 commit comments