Hello guys,
I am trying to create an awc::ws client. My server is using self generated ssl.
I have also checked the following issue.
https://github.com/actix/actix-web/issues/1069
awc = { version = "3", features = ["rustls"] }
let (res, mut ws) = awc::Client::new()
.ws("wss://127.0.0.1:8080")
.connect()
.await
.unwrap();
However I am getting this error :
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: SendRequest(Connect(Io(Custom { kind: InvalidData, error: UnsupportedNameType })))',