Skip to content

Commit 0dc8eda

Browse files
authored
Merge pull request #3 from zainkabani/zain/fix-branch
Fix merge conflict
2 parents ed79d55 + 23e67a3 commit 0dc8eda

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

bb8/src/inner.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ where
201201

202202
let mut locked = self.inner.internals.lock();
203203
match conn {
204-
Some(conn) => locked.put(conn, None),
204+
Some(conn) => locked.put(conn, None, self.inner.clone()),
205205
None => {
206206
let approvals = locked.dropped(1, &self.inner.statics);
207207
self.spawn_replenishing_approvals(approvals);
@@ -243,7 +243,10 @@ where
243243
match conn {
244244
Ok(conn) => {
245245
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());
247250
return Ok(());
248251
}
249252
Err(e) => {

bb8/src/internals.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,12 @@ where
6161
.map(|idle| (idle.conn, self.wanted(config)))
6262
}
6363

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+
) {
6570
if approval.is_some() {
6671
self.pending_conns -= 1;
6772
self.num_conns += 1;
@@ -70,7 +75,7 @@ where
7075
let queue_strategy = pool.statics.queue_strategy;
7176

7277
// Queue it in the idle queue
73-
let conn = IdleConn::from(guard.conn.take().unwrap());
78+
let conn = IdleConn::from(conn);
7479
match queue_strategy {
7580
QueueStrategy::Fifo => self.conns.push_back(conn),
7681
QueueStrategy::Lifo => self.conns.push_front(conn),

0 commit comments

Comments
 (0)