From b1f709693551f5981e548af86cc065060f9dac5c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 3 Oct 2013 13:08:32 +0200 Subject: [PATCH] Restore old findBuildDependencyInQueue behaviour --- src/script/hydra-queue-runner | 1 - 1 file changed, 1 deletion(-) diff --git a/src/script/hydra-queue-runner b/src/script/hydra-queue-runner index 370ea7e2..4dbb88db 100755 --- a/src/script/hydra-queue-runner +++ b/src/script/hydra-queue-runner @@ -48,7 +48,6 @@ 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;