parent
590e8d8511
commit
485aa93f2d
@ -773,6 +773,9 @@ sub checkJobsetWrapped {
|
|||||||
my $jobsetChanged = 0;
|
my $jobsetChanged = 0;
|
||||||
my %buildMap;
|
my %buildMap;
|
||||||
|
|
||||||
|
my @jobs;
|
||||||
|
push @jobs, $_ while defined($_ = $jobsIter->());
|
||||||
|
|
||||||
$db->txn_do(sub {
|
$db->txn_do(sub {
|
||||||
my $prevEval = getPrevJobsetEval($db, $jobset, 1);
|
my $prevEval = getPrevJobsetEval($db, $jobset, 1);
|
||||||
|
|
||||||
@ -796,7 +799,7 @@ sub checkJobsetWrapped {
|
|||||||
|
|
||||||
my @jobsWithConstituents;
|
my @jobsWithConstituents;
|
||||||
|
|
||||||
while (defined(my $job = $jobsIter->())) {
|
foreach my $job (@jobs) {
|
||||||
if ($jobsetsJobset) {
|
if ($jobsetsJobset) {
|
||||||
die "The .jobsets jobset must only have a single job named 'jobsets'"
|
die "The .jobsets jobset must only have a single job named 'jobsets'"
|
||||||
unless $job->{attr} eq "jobsets";
|
unless $job->{attr} eq "jobsets";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user