From f891c8f516c44ea5b395e836eec5076a8f7e4f47 Mon Sep 17 00:00:00 2001 From: ardocrat Date: Wed, 8 Jul 2026 23:02:35 +0300 Subject: [PATCH] tor: fix send timeout --- src/tor/tor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tor/tor.rs b/src/tor/tor.rs index c376a90f..1bc08185 100644 --- a/src/tor/tor.rs +++ b/src/tor/tor.rs @@ -323,7 +323,7 @@ impl Tor { .block_on(async move { let res = c .runtime() - .timeout(Duration::from_millis(600000), async { + .timeout(Duration::from_millis(60000), async { if let Ok(stream) = c .connect((uri.host().unwrap(), uri.port_u16().unwrap_or(80))) .await