Reduced missing timeout to 10 minutes (was 1h), closes #456

This commit is contained in:
Jorrit Wronski
2015-02-11 15:49:33 +01:00
parent 0cb981606d
commit 34e65e0d75

View File

@@ -39,7 +39,7 @@ from buildbot_private import email_auth
mn = mail.MailNotifier(fromaddr="buildbot@coolprop.dreamhosters.com",
sendToInterestedUsers=False,
mode=('problem'),
extraRecipients=["coolprop@jorrit.org", "ian.h.bell@gmail.com"],
extraRecipients=["jowr@mek.dtu.dk", "ian.h.bell@gmail.com"],
#useTls=True,
relayhost="homie.mail.dreamhost.com",
smtpPort=587, smtpUser=email_auth['user'],
@@ -47,14 +47,14 @@ mn = mail.MailNotifier(fromaddr="buildbot@coolprop.dreamhosters.com",
c['status'].append(mn)
####### BUILDSLAVES
####### BUILDSLAVES
# The 'slaves' list defines the set of recognized buildslaves. Each element is
# a BuildSlave object, specifying a unique slave name and password. The same
# slave name and password must be configured on the slave.
from buildbot.buildslave import BuildSlave
from buildbot_private import pass_dict
slave_commons = dict(notify_on_missing=["ian.h.bell@gmail.com", "jowr@mek.dtu.dk"], max_builds = 1)
slave_commons = dict(notify_on_missing=["ian.h.bell@gmail.com", "jowr@mek.dtu.dk"], missing_timeout=600 , max_builds = 1)
c['slaves'] = [BuildSlave("linux-slave", pass_dict["linux-slave"], **slave_commons),
BuildSlave("OSX-slave", pass_dict["OSX-slave"], **slave_commons),
BuildSlave("windows-slave", pass_dict["windows-slave"], **slave_commons),