Page MenuHomePhabricator

Add "product"output to Weekly Bugzilla Report email for "new bugs in component"
Closed, ResolvedPublic

Description

See http://lists.wikimedia.org/pipermail/wikitech-l/2013-June/070006.html for confusion.

Query (untested!) should probably become

SELECT product.name, component.name, count(*) as total FROM bugs JOIN components on bugs.component_id = components.id JOIN products on bugs.product_id = products.id WHERE creation_ts BETWEEN "$begin_date" AND "$end_date" GROUP BY component_id ORDER BY total DESC LIMIT 5;

in https://git.wikimedia.org/blob/operations%2Fpuppet.git/HEAD/templates%2Fmisc%2Fbugzilla_report.php line 27


Version: wmf-deployment
Severity: minor

Details

Reference
bz49758

Event Timeline

bzimport raised the priority of this task from to High.Nov 22 2014, 2:02 AM
bzimport set Reference to bz49758.

Related URL: https://gerrit.wikimedia.org/r/69457 (Gerrit Change Ifa25b82af54a5772d815b4fde64c6aa089745976)

This is fixed now. Filed bug 49845 for the next issue I spotted when checking the fix.