Skip to content

Commit

Permalink
Update svix-cli/src/relay/mod.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Jonas Platte <[email protected]>
  • Loading branch information
svix-onelson and svix-jplatte authored Dec 23, 2024
1 parent 3a478ff commit d1b582c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svix-cli/src/relay/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ impl WsConnection {
let request = websocket_url.to_string().into_client_request()?;
let (stream, _resp) = connect_async(request)
.await
.with_context(|| "failed to connect to websocket server")?;
.context("failed to connect to websocket server")?;

Ok(Self { stream })
}
Expand Down

0 comments on commit d1b582c

Please sign in to comment.