From: Brian Warner Date: Wed, 26 Sep 2007 02:22:33 +0000 (-0700) Subject: client.py: increase hotline timeout, the check_memory test is failing X-Git-Tag: allmydata-tahoe-0.6.1~83 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=e05311f69a646949f2c32af6a96ec080b28a1147;p=tahoe-lafs%2Ftahoe-lafs.git client.py: increase hotline timeout, the check_memory test is failing --- diff --git a/src/allmydata/client.py b/src/allmydata/client.py index 9f0dec4d..4918fa90 100644 --- a/src/allmydata/client.py +++ b/src/allmydata/client.py @@ -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")