increases timeout duration waiting on done notification in non-blocking logger test (#8462)

This commit is contained in:
Arya 2024-04-24 16:28:17 -04:00 committed by GitHub
parent ee9ab3162a
commit e95a70de7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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));
}