summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 2cc9bbe..1b9b31b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -469,7 +469,7 @@ async fn handle_commit_status(Path(path): Path<(String, String, String)>, State(
};
let mut artifacts_fragment = String::new();
- let mut artifacts = ctx.dbctx.artifacts_for_job(job.id, None).unwrap()
+ let mut artifacts: Vec<ArtifactRecord> = ctx.dbctx.artifacts_for_job(job.id, None).unwrap()
.into_iter() // HACK: filter out artifacts for previous runs of a job. artifacts should be attached to a run, runs should be distinct from jobs. but i'm sleepy.
.filter(|artifact| artifact.created_time >= job.start_time.unwrap_or_else(crate::io::now_ms))
.collect();