From c8a10a3bedd6a68408d291d6357b18285597fb35 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 1 Jul 2023 15:09:03 -0700 Subject: stray ref to old jobs path --- src/io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/io.rs') diff --git a/src/io.rs b/src/io.rs index 6e71282..50f9bad 100644 --- a/src/io.rs +++ b/src/io.rs @@ -66,7 +66,7 @@ pub struct ArtifactDescriptor { impl ArtifactDescriptor { pub async fn new(job_id: u64, artifact_id: u64) -> Result { // TODO: jobs should be a configurable path - let path = format!("jobs/{}/{}", job_id, artifact_id); + let path = format!("artifacts/{}/{}", job_id, artifact_id); let file = OpenOptions::new() .read(true) .write(true) -- cgit v1.1