Commit 2ec659bd authored by endico%mozilla.org's avatar endico%mozilla.org

limit Most Recently Doomed to the 20 most doomed. the full report takes forever

parent b4daeedd
...@@ -711,10 +711,15 @@ sub most_recently_doomed ...@@ -711,10 +711,15 @@ sub most_recently_doomed
# sort people by the number of bugs they have assigned to this milestone # sort people by the number of bugs they have assigned to this milestone
@people = sort bybugs @people; @people = sort bybugs @people;
my $totalpeople = @people; my $totalpeople = @people;
if ($totalpeople > 20) {
splice @people, 0, $totalpeople-20;
}
print "<TABLE>\n"; print "<TABLE>\n";
print "<TR><TD COLSPAN=2>\n"; print "<TR><TD COLSPAN=2>\n";
print "$totalpeople engineers have $bugtotal untouched new bugs.\n"; print "$totalpeople engineers have $bugtotal untouched new bugs.\n";
print "These are the 20 most doomed.";
print "</TD></TR>\n"; print "</TD></TR>\n";
while (@people) while (@people)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment