From accefbb7983565ea8729632ef833344d175b3995 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 21 Sep 2013 20:35:02 +0200 Subject: [PATCH] hydra-queue-runner: Disable findBuildDependencyInQueue for now It's way too slow. --- src/script/hydra-queue-runner | 1 + 1 file changed, 1 insertion(+) diff --git a/src/script/hydra-queue-runner b/src/script/hydra-queue-runner index 9c088716..51675287 100755 --- a/src/script/hydra-queue-runner +++ b/src/script/hydra-queue-runner @@ -48,6 +48,7 @@ sub unlockDeadBuilds { # depends; or undef if no such build exists. sub findBuildDependencyInQueue { my ($buildsByDrv, $build) = @_; + return undef; # FIXME return undef unless isValidPath($build->drvpath); my @deps = grep { /\.drv$/ && $_ ne $build->drvpath } computeFSClosure(0, 0, $build->drvpath); return unless scalar @deps > 0;