tor: fix send timeout

This commit is contained in:
ardocrat
2026-07-08 23:02:35 +03:00
parent ee8841590a
commit f891c8f516
+1 -1
View File
@@ -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