wake up client support future, prevents memory leak

This commit is contained in:
Nikolay Kim 2020-08-09 15:41:00 +06:00
parent e48449c781
commit c4fe71d3cf
2 changed files with 13 additions and 0 deletions

View file

@ -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

View file

@ -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,