File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -802,7 +802,7 @@ pub struct ArtifactCollection {
802
802
#[ derive( Debug ) ]
803
803
pub enum BenchmarkRequestStatus {
804
804
WaitingForArtifacts ,
805
- WaitingForParent ,
805
+ ArtifactsReady ,
806
806
InProgress ,
807
807
Completed ,
808
808
}
@@ -811,7 +811,7 @@ impl fmt::Display for BenchmarkRequestStatus {
811
811
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
812
812
match self {
813
813
BenchmarkRequestStatus :: WaitingForArtifacts => write ! ( f, "waiting_for_artifacts" ) ,
814
- BenchmarkRequestStatus :: WaitingForParent => write ! ( f, "waiting_for_parent " ) ,
814
+ BenchmarkRequestStatus :: ArtifactsReady => write ! ( f, "artifacts_ready " ) ,
815
815
BenchmarkRequestStatus :: InProgress => write ! ( f, "in_progress" ) ,
816
816
BenchmarkRequestStatus :: Completed => write ! ( f, "completed" ) ,
817
817
}
Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ mod tests {
389
389
"parent-sha-1" ,
390
390
42 ,
391
391
time,
392
- BenchmarkRequestStatus :: WaitingForParent ,
392
+ BenchmarkRequestStatus :: ArtifactsReady ,
393
393
"llvm" ,
394
394
"" ,
395
395
) ;
@@ -399,15 +399,15 @@ mod tests {
399
399
"parent-sha-2" ,
400
400
32 ,
401
401
time,
402
- BenchmarkRequestStatus :: WaitingForParent ,
402
+ BenchmarkRequestStatus :: ArtifactsReady ,
403
403
"cranelift" ,
404
404
"" ,
405
405
) ;
406
406
407
407
let release_benchmark_request = BenchmarkRequest :: create_release (
408
408
"1.8.0" ,
409
409
time,
410
- BenchmarkRequestStatus :: WaitingForParent ,
410
+ BenchmarkRequestStatus :: ArtifactsReady ,
411
411
"cranelift,llvm" ,
412
412
"" ,
413
413
) ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ async fn enqueue_master_commits(ctxt: &Arc<SiteCtxt>) {
24
24
& master_commit. parent_sha ,
25
25
pr,
26
26
master_commit. time ,
27
- BenchmarkRequestStatus :: WaitingForParent ,
27
+ BenchmarkRequestStatus :: ArtifactsReady ,
28
28
"" ,
29
29
"" ,
30
30
) ;
You can’t perform that action at this time.
0 commit comments