increases timeout duration waiting on done notification in non-blocking logger test

This commit is contained in:
Arya 2024-04-24 14:16:28 -04:00
parent 5f69870235
commit c89f2bb89a
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}