Chromium Code Reviews| Index: masters/master.chromium.lkgr/master.cfg |
| diff --git a/masters/master.chromium.lkgr/master.cfg b/masters/master.chromium.lkgr/master.cfg |
| index 52eac099fc6b1c0321cfd15bf7f16c5272edba7a..3d015f3ae6c12582217a208bf7c6fb83b2f3f22d 100644 |
| --- a/masters/master.chromium.lkgr/master.cfg |
| +++ b/masters/master.chromium.lkgr/master.cfg |
| @@ -2,6 +2,8 @@ |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| +from buildbot.status.mail import MailNotifier |
| + |
| from master import master_utils |
| from master import slaves_list |
| @@ -46,3 +48,11 @@ master_utils.AutoSetupMaster(c, ActiveMaster, |
| templates=['../master.chromium/templates'], |
| tagComparator=c['change_source'][0].comparator, |
| enable_http_status_push=ActiveMaster.is_production_host) |
| + |
| +c['status'].append(MailNotifier( |
| + fromaddr=ActiveMaster.from_address, |
| + mode='problem', |
| + relayhost=config.Master.smtp, |
| + subject='LKGR build failing on %(builder)s', |
|
inferno
2015/07/21 04:22:35
s/failing/failure
Oliver Chang
2015/07/21 04:36:02
Done.
|
| + extraRecipients=['chrome-security-bugs--@google.com'], |
|
inferno
2015/07/21 04:22:35
We shouldn't use this email. This is also subscrib
Oliver Chang
2015/07/21 04:36:02
Done.
|
| + sendToInterestedUsers=False)) |