This commit is contained in:
mergify[bot] 2024-04-24 19:22:26 +00:00 committed by GitHub
commit ec0d4fdeec
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));
}