From 5fa688acf57e0969d09794b2d18614ef3c053d0a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 4 Oct 2012 15:24:25 -0400 Subject: [PATCH] Don't ignore assertion failures in getDerivation() --- src/c/hydra-eval-jobs.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/c/hydra-eval-jobs.cc b/src/c/hydra-eval-jobs.cc index c8cb125b..7b94512c 100644 --- a/src/c/hydra-eval-jobs.cc +++ b/src/c/hydra-eval-jobs.cc @@ -6,6 +6,7 @@ #include "shared.hh" #include "store-api.hh" #include "eval.hh" +#include "eval-inline.hh" #include "util.hh" #include "xml-writer.hh" #include "get-drvs.hh" @@ -118,7 +119,7 @@ static void findJobsWrapped(EvalState & state, XMLWriter & doc, DrvInfo drv; - if (getDerivation(state, v, drv)) { + if (getDerivation(state, v, drv, false)) { XMLAttrs xmlAttrs; Path drvPath;