forked from lix-project/hydra
* Monitor for dead builds all the time.
This commit is contained in:
parent
ba5e4be15e
commit
2156e406b4
|
@ -11,6 +11,7 @@ my $db = Hydra::Schema->connect("dbi:SQLite:dbname=hydra.sqlite", "", "", {});
|
||||||
$db->storage->dbh->do("PRAGMA synchronous = OFF;");
|
$db->storage->dbh->do("PRAGMA synchronous = OFF;");
|
||||||
|
|
||||||
|
|
||||||
|
sub unlockDeadJobs {
|
||||||
# Unlock jobs whose building process has died.
|
# Unlock jobs whose building process has died.
|
||||||
$db->txn_do(sub {
|
$db->txn_do(sub {
|
||||||
my @jobs = $db->resultset('Builds')->search(
|
my @jobs = $db->resultset('Builds')->search(
|
||||||
|
@ -25,6 +26,7 @@ $db->txn_do(sub {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
sub checkJobs {
|
sub checkJobs {
|
||||||
|
@ -112,6 +114,7 @@ sub checkJobs {
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
eval {
|
eval {
|
||||||
|
unlockDeadJobs;
|
||||||
checkJobs;
|
checkJobs;
|
||||||
};
|
};
|
||||||
warn $@ if $@;
|
warn $@ if $@;
|
||||||
|
|
Loading…
Reference in a new issue