Increase reverse tunnel timeout to 3min

pull/264/head
Σrebe - Romain GERARD 2024-04-28 00:11:41 +02:00
parent 8a228248d7
commit 135fcb5127
No known key found for this signature in database
GPG Key ID: 7A42B4B97E0332F4
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ where
listening_server
} else {
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 fut = async move {
pin_mut!(listening_server);