Update job_archive.rs

This commit is contained in:
S.B
2026-02-13 00:44:11 +02:00
committed by GitHub
parent f292e8c697
commit 4389cf9015
+1 -1
View File
@@ -59,7 +59,7 @@ pub enum JobStatus {
}
/// Thread-safe job storage with automatic archival
#[derive(Clone)]
#[derive(Clone, Debug)] // Added Debug here
pub struct JobArchive {
/// In-memory job storage
jobs: Arc<RwLock<VecDeque<JobResult>>>,