forked from lix-project/hydra
Fix restarting builds
Failed paths were not cleared because the $builds query becomes empty as soon as the "finished" flag has been cleared. So this needs to be done last.
This commit is contained in:
parent
bbe1fb2f9f
commit
b9ebd38edf
|
@ -453,11 +453,6 @@ sub restartBuilds($$) {
|
||||||
my $nrRestarted = 0;
|
my $nrRestarted = 0;
|
||||||
|
|
||||||
txn_do($db, sub {
|
txn_do($db, sub {
|
||||||
$nrRestarted = $builds->update(
|
|
||||||
{ finished => 0
|
|
||||||
, iscachedbuild => 0
|
|
||||||
});
|
|
||||||
|
|
||||||
# Reset the stats for the evals to which the builds belongs.
|
# Reset the stats for the evals to which the builds belongs.
|
||||||
# !!! Should do this in a trigger.
|
# !!! Should do this in a trigger.
|
||||||
$db->resultset('JobsetEvals')->search(
|
$db->resultset('JobsetEvals')->search(
|
||||||
|
@ -473,6 +468,11 @@ sub restartBuilds($$) {
|
||||||
{ path => { -in => $builds->search({}, { join => "buildstepoutputs", select => "buildstepoutputs.path", as => "path", distinct => 1 })->as_query }
|
{ path => { -in => $builds->search({}, { join => "buildstepoutputs", select => "buildstepoutputs.path", as => "path", distinct => 1 })->as_query }
|
||||||
})->delete;
|
})->delete;
|
||||||
print STDERR "cleared $cleared failed paths\n";
|
print STDERR "cleared $cleared failed paths\n";
|
||||||
|
|
||||||
|
$nrRestarted = $builds->update(
|
||||||
|
{ finished => 0
|
||||||
|
, iscachedbuild => 0
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
return $nrRestarted;
|
return $nrRestarted;
|
||||||
|
|
Loading…
Reference in a new issue