Increase Windows timeout for app-server flow tests

This commit is contained in:
Dylan Hurd
2026-02-01 20:15:43 -08:00
parent 5ad8c4783e
commit f27ef275b2

View File

@@ -36,6 +36,9 @@ use std::path::Path;
use tempfile::TempDir;
use tokio::time::timeout;
#[cfg(target_os = "windows")]
const DEFAULT_READ_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(25);
#[cfg(not(target_os = "windows"))]
const DEFAULT_READ_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(10);
#[tokio::test(flavor = "multi_thread", worker_threads = 4)]