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
......@@ -712,9 +712,14 @@ sub most_recently_doomed
@people = sort bybugs @people;
my $totalpeople = @people;
if ($totalpeople > 20) {
splice @people, 0, $totalpeople-20;
}
print "<TABLE>\n";
print "<TR><TD COLSPAN=2>\n";
print "$totalpeople engineers have $bugtotal untouched new bugs.\n";
print "These are the 20 most doomed.";
print "</TD></TR>\n";
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