mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
wake up client support future, prevents memory leak
This commit is contained in:
parent
e48449c781
commit
c4fe71d3cf
2 changed files with 13 additions and 0 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.1.22] - 2020-08-xx
|
||||
|
||||
* Wake http client connection pool support future on drop, prevents memory leak.
|
||||
|
||||
## [0.1.21] - 2020-07-29
|
||||
|
||||
* Optimize http/1 dispatcher
|
||||
|
|
|
@ -82,6 +82,15 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
impl<T, Io> Drop for ConnectionPool<T, Io>
|
||||
where
|
||||
Io: 'static,
|
||||
{
|
||||
fn drop(&mut self) {
|
||||
self.1.borrow().waker.wake();
|
||||
}
|
||||
}
|
||||
|
||||
impl<T, Io> Clone for ConnectionPool<T, Io>
|
||||
where
|
||||
Io: 'static,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue