From c89f2bb89ad39980f40c402d7917690d7d773839 Mon Sep 17 00:00:00 2001 From: Arya Date: Wed, 24 Apr 2024 14:16:28 -0400 Subject: [PATCH] increases timeout duration waiting on done notification in non-blocking logger test --- zebrad/tests/acceptance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebrad/tests/acceptance.rs b/zebrad/tests/acceptance.rs index 6c9115d9e..573affe8b 100644 --- a/zebrad/tests/acceptance.rs +++ b/zebrad/tests/acceptance.rs @@ -1757,7 +1757,7 @@ fn non_blocking_logger() -> Result<()> { }); // Wait until the spawned task finishes up to 45 seconds before shutting down tokio runtime - if done_rx.recv_timeout(Duration::from_secs(45)).is_ok() { + if done_rx.recv_timeout(Duration::from_secs(90)).is_ok() { rt.shutdown_timeout(Duration::from_secs(3)); }