From 7ea69e7a9db5b8678c673efe6d33888a6d60787a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 10 Mar 2009 11:49:18 +0000 Subject: [PATCH] * Disregard failing substituters. --- src/script/hydra_build.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/hydra_build.pl b/src/script/hydra_build.pl index 328acad1..90041c0b 100755 --- a/src/script/hydra_build.pl +++ b/src/script/hydra_build.pl @@ -55,7 +55,7 @@ sub doBuild { # !!! should disregard fixed-output derivations (?) if (!isValidPath($dep)) { my ($step) = $db->resultset('BuildSteps')->search( - {outPath => $dep}, {rows => 1, order_by => "stopTime DESC", busy => 0}); + {outPath => $dep}, {rows => 1, order_by => "stopTime DESC", type => 0, busy => 0}); if ($step && $step->status != 0) { $buildStatus = 5; $failedDepBuild = $step->id->id;