diff --git a/core/src/infra/job/manager.rs b/core/src/infra/job/manager.rs index 70d41a31e..e7b623322 100644 --- a/core/src/infra/job/manager.rs +++ b/core/src/infra/job/manager.rs @@ -697,7 +697,6 @@ impl JobManager { job_infos } - /// List all jobs with a specific status (unified query) pub async fn list_jobs(&self, status: Option) -> JobResult> { use sea_orm::QueryFilter; diff --git a/core/src/ops/media/thumbnail/job.rs b/core/src/ops/media/thumbnail/job.rs index de8ae9ef0..467c67b35 100644 --- a/core/src/ops/media/thumbnail/job.rs +++ b/core/src/ops/media/thumbnail/job.rs @@ -80,7 +80,6 @@ impl crate::infra::job::traits::DynJob for ThumbnailJob { fn job_name(&self) -> &'static str { Self::NAME } - } /// Output from thumbnail generation job @@ -497,4 +496,3 @@ impl ThumbnailJob { Ok(entries) } } -