Add static bound to appease 1.74.1
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
asonix 2023-12-12 17:17:16 -06:00
parent f1c5a56353
commit 2544cb478f

View file

@ -159,7 +159,11 @@ pub(crate) async fn queue_generate(
Ok(())
}
pub(crate) async fn process_cleanup<S: Store>(repo: ArcRepo, store: S, config: Configuration) {
pub(crate) async fn process_cleanup<S: Store + 'static>(
repo: ArcRepo,
store: S,
config: Configuration,
) {
process_jobs(&repo, &store, &config, CLEANUP_QUEUE, cleanup::perform).await
}