]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
client.py: increase hotline timeout, the check_memory test is failing
authorBrian Warner <warner@allmydata.com>
Wed, 26 Sep 2007 02:22:33 +0000 (19:22 -0700)
committerBrian Warner <warner@allmydata.com>
Wed, 26 Sep 2007 02:22:33 +0000 (19:22 -0700)
src/allmydata/client.py

index 9f0dec4d711bd14c6029b72722c94f62041dd1d6..4918fa9065d1a13baf7ebb5555ef0b2aec21dd87 100644 (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")