From 2c90857689428cc870a7899117aab453c4a51568 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 7 Oct 2013 10:47:22 -0400 Subject: [PATCH] getResponsibleAuthors: Respect checkResponsible Signed-off-by: Shea Levy --- src/lib/Hydra/Helper/CatalystUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Hydra/Helper/CatalystUtils.pm b/src/lib/Hydra/Helper/CatalystUtils.pm index b8a35aaf..08ca5587 100644 --- a/src/lib/Hydra/Helper/CatalystUtils.pm +++ b/src/lib/Hydra/Helper/CatalystUtils.pm @@ -262,7 +262,7 @@ sub getResponsibleAuthors { if ($prevBuild) { foreach my $curInput ($build->buildinputs_builds) { - next unless ($curInput->type eq "git" || $curInput->type eq "hg"); + next unless (($curInput->type eq "git" || $curInput->type eq "hg") && $curInput->checkresponsible); my $prevInput = $prevBuild->buildinputs_builds->find({ name => $curInput->name }); next unless defined $prevInput;