forked from lix-project/hydra
Fix "Evaluation pending since..." message even though the jobset has been evaluated
This commit is contained in:
parent
dfb3a52f67
commit
f0d24af940
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ struct Evaluator
|
|||
jobset from getting stuck in an endless
|
||||
failing eval loop. */
|
||||
txn.parameterized
|
||||
("update Jobsets set triggerTime = null where project = $1 and name = $2 and startTime is not null and triggerTime < startTime")
|
||||
("update Jobsets set triggerTime = null where project = $1 and name = $2 and startTime is not null and triggerTime <= startTime")
|
||||
(jobset.name.first)
|
||||
(jobset.name.second)
|
||||
.exec();
|
||||
|
|
Loading…
Reference in a new issue