mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-22 10:51:29 +00:00
cleanup
This commit is contained in:
parent
1b75fb2d71
commit
53e6c3daa7
2 changed files with 5 additions and 9 deletions
|
@ -178,7 +178,7 @@ steps:
|
|||
CARGO_HOME: .cargo_home
|
||||
commands:
|
||||
- cargo build
|
||||
- cp target/debug/lemmy_server target/lemmy_server
|
||||
- mv target/debug/lemmy_server target/lemmy_server
|
||||
when: *slow_check_paths
|
||||
|
||||
check_diesel_migration:
|
||||
|
|
|
@ -285,8 +285,7 @@ async fn delete_expired_captcha_answers(pool: &mut DbPool<'_>) -> LemmyResult<()
|
|||
captcha_answer::table.filter(captcha_answer::published.lt(now() - IntervalDsl::minutes(10))),
|
||||
)
|
||||
.execute(&mut conn)
|
||||
.await
|
||||
.map(|_| {})?;
|
||||
.await?;
|
||||
info!("Done.");
|
||||
|
||||
Ok(())
|
||||
|
@ -313,11 +312,8 @@ async fn clear_old_activities(pool: &mut DbPool<'_>) -> LemmyResult<()> {
|
|||
}
|
||||
|
||||
async fn delete_old_denied_users(pool: &mut DbPool<'_>) -> LemmyResult<()> {
|
||||
LocalUser::delete_old_denied_local_users(pool)
|
||||
.await
|
||||
.map(|_| {
|
||||
info!("Done.");
|
||||
})?;
|
||||
LocalUser::delete_old_denied_local_users(pool).await?;
|
||||
info!("Done.");
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
@ -583,7 +579,7 @@ mod tests {
|
|||
|
||||
#[tokio::test]
|
||||
#[serial]
|
||||
async fn test_scheduled_tasks() -> LemmyResult<()> {
|
||||
async fn test_scheduled_tasks_no_errors() -> LemmyResult<()> {
|
||||
let context = test_context().await;
|
||||
|
||||
startup_jobs(&mut context.pool()).await?;
|
||||
|
|
Loading…
Reference in a new issue