We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d1600d commit 02dc023Copy full SHA for 02dc023
packages/core/guard/core/src/proxy_service.rs
@@ -1820,16 +1820,15 @@ impl ProxyService {
1820
let ws_handle = WebSocketHandle::new(client_ws);
1821
1822
loop {
1823
- match dbg!(
1824
- handlers
1825
- .handle_websocket(
1826
- ws_handle.clone(),
1827
- &req_headers,
1828
- &req_path,
1829
- &mut request_context,
1830
- )
1831
- .await
1832
- ) {
+ match handlers
+ .handle_websocket(
+ ws_handle.clone(),
+ &req_headers,
+ &req_path,
+ &mut request_context,
+ )
+ .await
+ {
1833
Result::Ok(()) => {
1834
tracing::debug!("websocket closed");
1835
0 commit comments