Removing Jan's email; improving the way we identify each commit's author
This commit is contained in:
parent
165357d83a
commit
1ba38b09a8
1 changed files with 3 additions and 2 deletions
|
@ -132,7 +132,8 @@ send to the gdb-testers mailing list."""
|
||||||
|
|
||||||
# Who's to blame?
|
# Who's to blame?
|
||||||
text += "Author(s):\n"
|
text += "Author(s):\n"
|
||||||
text += "\t%s\n" % build.getResponsibleUsers()
|
for author in build.getResponsibleUsers():
|
||||||
|
text += "\t%s\n" % author
|
||||||
|
|
||||||
# Including the 'regressions' log. This is the 'diff' of what
|
# Including the 'regressions' log. This is the 'diff' of what
|
||||||
# went wrong.
|
# went wrong.
|
||||||
|
@ -158,7 +159,7 @@ send to the gdb-testers mailing list."""
|
||||||
from buildbot.status import mail
|
from buildbot.status import mail
|
||||||
mn = mail.MailNotifier(fromaddr = "sergiodj@redhat.com",
|
mn = mail.MailNotifier(fromaddr = "sergiodj@redhat.com",
|
||||||
sendToInterestedUsers = False,
|
sendToInterestedUsers = False,
|
||||||
extraRecipients = ['sergiodj@redhat.com', 'jan.kratochvil@redhat.com'],
|
extraRecipients = ['sergiodj@redhat.com'],
|
||||||
# extraRecipients = ['gdb-testers@sourceware.org'],
|
# extraRecipients = ['gdb-testers@sourceware.org'],
|
||||||
relayhost = "smtp.corp.redhat.com",
|
relayhost = "smtp.corp.redhat.com",
|
||||||
mode = ('failing'),
|
mode = ('failing'),
|
||||||
|
|
Loading…
Reference in a new issue