Update rustls, tokio-tungstenite & hyper-rustls
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-05-25 09:54:12 +02:00
parent 3ab8201c13
commit d06585ad71
4 changed files with 193 additions and 246 deletions

View File

@ -133,7 +133,7 @@ impl Client {
.with_no_client_auth();
let connector = tokio_tungstenite::Connector::Rustls(Arc::new(config));
tokio_tungstenite::connect_async_tls_with_config(ws_url, None, Some(connector)).await?
tokio_tungstenite::connect_async_tls_with_config(ws_url, None, false,Some(connector)).await?
} else {
// Perform an unsecure connection
tokio_tungstenite::connect_async(ws_url).await?