Increase reverse tunnel timeout to 3min
This commit is contained in:
parent
8a228248d7
commit
135fcb5127
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ where
|
||||||
listening_server
|
listening_server
|
||||||
} else {
|
} else {
|
||||||
let listening_server = gen_listening_server.await?;
|
let listening_server = gen_listening_server.await?;
|
||||||
let send_timeout = Duration::from_secs(30);
|
let send_timeout = Duration::from_secs(60 * 3);
|
||||||
let (tx, rx) = mpsc::channel::<T>(1);
|
let (tx, rx) = mpsc::channel::<T>(1);
|
||||||
let fut = async move {
|
let fut = async move {
|
||||||
pin_mut!(listening_server);
|
pin_mut!(listening_server);
|
||||||
|
|
Loading…
Reference in a new issue