Skip to content

Commit

Permalink
fix: use the correct HTTP method (GET) for WS connections
Browse files Browse the repository at this point in the history
Closes: #883
  • Loading branch information
ctron committed Oct 7, 2024
1 parent 7400f4e commit 5e9c178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ impl ProxyHandlerWebSocket {
let outbound_request = match make_outbound_request(
inbound_proto,
&outbound_uri,
http::Method::CONNECT,
http::Method::GET,
req_headers,
override_headers,
) {
Expand Down

0 comments on commit 5e9c178

Please sign in to comment.