fix(proxy): url decode password of http proxy
This commit is contained in:
parent
b55ddd5947
commit
91d1215d5b
4 changed files with 13 additions and 1 deletions
|
@ -102,7 +102,9 @@ where
|
|||
|
||||
// Forward local tx to websocket tx
|
||||
let ping_frequency = client_cfg.websocket_ping_frequency;
|
||||
tokio::spawn(super::io::propagate_read(local_rx, ws_tx, close_tx, Some(ping_frequency)).instrument(Span::current()));
|
||||
tokio::spawn(
|
||||
super::io::propagate_read(local_rx, ws_tx, close_tx, Some(ping_frequency)).instrument(Span::current()),
|
||||
);
|
||||
|
||||
// Forward websocket rx to local rx
|
||||
let _ = super::io::propagate_write(local_tx, ws_rx, close_rx).await;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue