Potential blockers for 2.16



So I was thinking about how I could identify some of the major issues
that might be blockers for this release tonight, and the following is
what I came up with:

mysql> select b.bug_id, b.short_desc, count(1)
         from bugs b, duplicates d
        where b.creation_ts  > DATE_SUB(CURDATE(), INTERVAL 30 DAY)
          and b.bug_status != 'RESOLVED'
          and b.bug_id = d.dupe_of
     group by b.bug_id
       having count(1) >= 5;

+--------+------------------------------------------------+----------+
| bug_id | short_desc                                     | count(1) |
+--------+------------------------------------------------+----------+
| 350758 | Nautilus crashes after browsing some folders   |       14 |
| 350975 | crash on Computer                              |        7 |
| 351651 | Crash creating the Python module               |        7 |
| 351713 | crash on Computer                              |        6 |
| 352686 | crash in file chooser (gtk_file_system_handle_ |       13 |
| 352736 | crash in Bug Report Tool: properties in the ico|        5 |
| 353348 | crash in Bug Report Tool:                      |        6 |
+--------+------------------------------------------------+----------+
7 rows in set (0.96 sec)

For the non-SQL savvy, this query finds all bugs in the last
month that are not resolved, and have 5 or more duplicates filed against
them.

Out of these, it appears that only 353348 has a (untested) patch to fix the issue.

350758 and 352686 seem like the most critical blockers here, as they have the most duplicates.
I think we should block the release on these two bugs.

Please discuss (let me know if I should send this to another m-l for
discussion - I don't know if release-team@ is the appropriate place for
discussion to take place)

Thanks,

--
Brent Smith <gnome nextreality net>
IRC: smitten



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]