merge artifacts

This commit is contained in:
Nikolay Kim 2021-06-26 00:23:32 +06:00
commit 0b2dda93be
2 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,8 @@
* drop direct tokio dependency
* rustls connector - fix rustls connect to work around a port in hostname (giving invalid DNS) #50
## [0.3.18] - 2021-06-03
* server: expose server status change notifications

View file

@ -37,7 +37,7 @@ impl<T: Address + 'static> RustlsConnector<T> {
Connect<T>: From<U>,
{
let req = Connect::from(message);
let host = req.host().to_string();
let host = req.host().split(":").next().unwrap().to_owned();
let conn = self.connector.call(req);
let config = self.config.clone();