Bump the timeout on "wait_until_i_am_the_last_task"

This commit is contained in:
Igor Katson 2025-02-28 11:58:47 +00:00
parent 3c28c2fdf7
commit 24a9f83a48
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5

View file

@ -208,7 +208,7 @@ pub async fn wait_until_i_am_the_last_task() -> anyhow::Result<()> {
Ok(())
},
// This needs to be higher than the timeout the tasks print "still running"
Duration::from_secs(6),
Duration::from_secs(15),
)
.await
}