From: Andrew Bartlett Date: Wed, 8 Jan 2014 05:23:47 +0000 (+1300) Subject: bump dead host time to 3 weeks X-Git-Url: http://git.samba.org/?p=build-farm.git;a=commitdiff_plain;h=fe90d6be7bd58b118010992f83699df6f82a723d bump dead host time to 3 weeks --- diff --git a/mail-dead-hosts.py b/mail-dead-hosts.py index fada47ee..56ca8115 100755 --- a/mail-dead-hosts.py +++ b/mail-dead-hosts.py @@ -33,7 +33,7 @@ buildfarm = BuildFarm(timeout=40.0) smtp = smtplib.SMTP() smtp.connect() -hosts = buildfarm.hostdb.dead_hosts(7 * 86400) +hosts = buildfarm.hostdb.dead_hosts(21 * 86400) for host in hosts: if host.last_update: last_update = time.strftime("%a %b %e %H:%M:%S %Y", time.gmtime(host.last_update))