mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
merge artifacts
This commit is contained in:
commit
0b2dda93be
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue