diff options
author | iximeow <me@iximeow.net> | 2023-07-01 15:09:03 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2023-07-01 15:09:03 -0700 |
commit | c8a10a3bedd6a68408d291d6357b18285597fb35 (patch) | |
tree | e5fee0680da231d62c0488121fd56aecc5ccfd21 | |
parent | d6c7bd54efc0516fc561926279b36408b77fba33 (diff) |
stray ref to old jobs path
-rw-r--r-- | src/io.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -66,7 +66,7 @@ pub struct ArtifactDescriptor { impl ArtifactDescriptor { pub async fn new(job_id: u64, artifact_id: u64) -> Result<Self, String> { // 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) |