From 64c304a45265705832ebb4ab4e9ef19f899ac911 Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Sat, 12 Oct 2024 16:53:38 -0700 Subject: refactor(ext/tls): use concrete error types (#26174) --- ext/websocket/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/websocket/lib.rs') diff --git a/ext/websocket/lib.rs b/ext/websocket/lib.rs index 9e320040b..b8043516b 100644 --- a/ext/websocket/lib.rs +++ b/ext/websocket/lib.rs @@ -349,6 +349,7 @@ pub fn create_ws_client_config( TlsKeys::Null, socket_use, ) + .map_err(|e| e.into()) } /// Headers common to both http/1.1 and h2 requests. -- cgit v1.2.3