Compare commits

..

2 commits

Author SHA1 Message Date
a2cd391827 fix(repo): avoid blocking threads when pausing
Some checks failed
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
Rust / build (push) Failing after 5m6s
2024-08-31 07:03:58 +01:00
7504ab5a2d fix(tui): improve reliability of status updates
All checks were successful
Rust / build (push) Successful in 7m16s
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
Release Please / Release-plz (push) Successful in 1m25s
2024-08-31 07:03:58 +01:00

View file

@ -81,11 +81,11 @@ async fn when_fail_should_recheck_after_delay() -> TestResult {
git::forge::commit::Status::Fail,
)))
.await?;
actix_rt::time::sleep(Duration::from_millis(100)).await;
actix_rt::time::sleep(Duration::from_millis(1)).await;
System::current().stop();
//then
log.require_message_containing("send-after-delay: ValidateRepo")?;
log.require_message_containing("send: ValidateRepo")?;
Ok(())
}