We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1bdaa7c + bf29e25 commit 703374fCopy full SHA for 703374f
src/experiments.rs
@@ -317,7 +317,11 @@ impl Experiment {
317
continue;
318
}
319
let (completed, all) = ex.raw_progress(db)?;
320
- if completed == all {
+ // FIXME: We often see more results than crates -- presumably, some
321
+ // crates are run more than once and marked more than once, but the
322
+ // details are not clear. For now, just assume that we're done if we
323
+ // have 'more than enough' results too.
324
+ if completed >= all {
325
return Ok(Some(ex));
326
327
0 commit comments