client.py: increase hotline timeout, the check_memory test is failing

This commit is contained in:
Brian Warner 2007-09-25 19:22:33 -07:00
parent 1691524044
commit e05311f69a

View File

@ -105,7 +105,7 @@ class Client(node.Node, Referenceable, testutil.PollMixin):
def _check_hotline(self, hotline_file):
if os.path.exists(hotline_file):
mtime = os.stat(hotline_file)[stat.ST_MTIME]
if mtime > time.time() - 10.0:
if mtime > time.time() - 20.0:
return
else:
self.log("hotline file too old, shutting down")