Compare commits

..

2 commits

Author SHA1 Message Date
79b13dc80f fix(repo): avoid blocking threads when pausing
All checks were successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
2024-08-30 21:10:36 +01:00
21f93da3e7 fix(tui): improve reliability of status updates
Some checks failed
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Rust / build (push) Failing after 7m1s
2024-08-30 21:10:36 +01:00

View file

@ -1,5 +1,3 @@
use std::time::Duration;
// //
use super::*; use super::*;
@ -81,7 +79,7 @@ async fn when_fail_should_recheck_after_delay() -> TestResult {
git::forge::commit::Status::Fail, git::forge::commit::Status::Fail,
))) )))
.await?; .await?;
actix_rt::time::sleep(Duration::from_millis(10)).await; actix_rt::time::sleep(std::time::Duration::from_millis(2)).await;
System::current().stop(); System::current().stop();
//then //then