Author: mcbrown
Date: 2008-07-21 11:57:06 +0200 (Mon, 21 Jul 2008)
New Revision: 11294
Log:
Non-numeric Bug IDs are no longer supported in the changelog
Modified:
trunk/tools/MySQL/DynXML/ChangelogParser.pm
Modified: trunk/tools/MySQL/DynXML/ChangelogParser.pm
===================================================================
--- trunk/tools/MySQL/DynXML/ChangelogParser.pm 2008-07-21 09:35:43 UTC (rev 11293)
+++ trunk/tools/MySQL/DynXML/ChangelogParser.pm 2008-07-21 09:57:06 UTC (rev 11294)
Changed blocks: 1, Lines Added: 2, Lines Deleted: 1; 694 bytes
@@ -201,7 +201,8 @@
{
if ($self->{currententry}->{bugs}->[0] !~ m/^[0-9]+$/)
{
- print STDERR "WARNING: $self->{currententry}->{bugs}->[0] is not
numerical\n";
+ print STDERR "ERROR: Bug ID $self->{currententry}->{bugs}->[0]
is not numeric\n";
+ exit 1;
}
$rank += $self->{currententry}->{bugs}->[0];
}
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r11294 - trunk/tools/MySQL/DynXML | mcbrown | 21 Jul |