diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-10-12 16:53:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-12 16:53:38 -0700 |
commit | 64c304a45265705832ebb4ab4e9ef19f899ac911 (patch) | |
tree | b918bdd40b092dd26ed3a83a55369488af28121c /ext/websocket | |
parent | 2ac699fe6e5b69f656046c5a9657542dc1cf2e9d (diff) |
refactor(ext/tls): use concrete error types (#26174)
Diffstat (limited to 'ext/websocket')
-rw-r--r-- | ext/websocket/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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. |