Closed
Bug 1055813
Opened 11 years ago
Closed 11 years ago
Exclude release+b2gbumper from perf regression emails
Categories
(Testing :: Talos, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: nthomas, Unassigned)
Details
Attachments
(1 file)
|
1.13 KB,
patch
|
jmaher
:
review+
|
Details | Diff | Splinter Review |
We get emails to release+b2gbumper@m.c when perf numbers change and the b2g_bumper is one of the changesets in the range.
We should either
* prevent release+b2gbumper from getting the emails, since there's nothing for us to do in response
* send email to all the authors of the changesets in the bump
The latter may not be appropriate for non-b2g regressions.
Updated•11 years ago
|
Component: Tools → Talos
Product: Release Engineering → Testing
QA Contact: hwine
Version: unspecified → Trunk
Comment 1•11 years ago
|
||
this is where the code is to build the email list:
http://hg.mozilla.org/graphs/file/632a9d16cb0d/server/analysis/analyze_talos.py#l611
I suspect we could add a check in this for loop (http://hg.mozilla.org/graphs/file/632a9d16cb0d/server/analysis/analyze_talos.py#l618):
if author in ['release+b2gbumper@mozilla.com']:
continue
that would give us flexibility to add other email addresses as well.
| Reporter | ||
Comment 2•11 years ago
|
||
Attachment #8476425 -
Flags: review?(jmaher)
Comment 3•11 years ago
|
||
Comment on attachment 8476425 [details] [diff] [review]
[talos] Skip whitelisted address
Review of attachment 8476425 [details] [diff] [review]:
-----------------------------------------------------------------
::: server/analysis/analyze_talos.py
@@ +624,5 @@
> pusher = email.utils.parseaddr(c['pusher'])
> if pusher != ('', ''):
> pusher = email.utils.formataddr(pusher)
>
> + if author in ('B2G Bumper Bot <release+b2gbumper@mozilla.com>',):
honestly I am not sure if this is the correct format, but we can give it a try
Attachment #8476425 -
Flags: review?(jmaher) → review+
| Reporter | ||
Comment 4•11 years ago
|
||
Comment on attachment 8476425 [details] [diff] [review]
[talos] Skip whitelisted address
I grabbed the address from an email we received, and it matches what is in hg too.
Landed: http://hg.mozilla.org/graphs/rev/322eacb65492
Updated cruncher:~catlee/graphs from rev 217745463427 to 322eacb65492.
| Reporter | ||
Comment 5•11 years ago
|
||
Followup fix for typo, http://hg.mozilla.org/graphs/rev/c63ec038ee40. Deployed.
| Reporter | ||
Comment 6•11 years ago
|
||
Confirmed working.
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•