mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-19 15:53:48 +00:00
client.py: increase hotline timeout, the check_memory test is failing
This commit is contained in:
@ -105,7 +105,7 @@ class Client(node.Node, Referenceable, testutil.PollMixin):
|
|||||||
def _check_hotline(self, hotline_file):
|
def _check_hotline(self, hotline_file):
|
||||||
if os.path.exists(hotline_file):
|
if os.path.exists(hotline_file):
|
||||||
mtime = os.stat(hotline_file)[stat.ST_MTIME]
|
mtime = os.stat(hotline_file)[stat.ST_MTIME]
|
||||||
if mtime > time.time() - 10.0:
|
if mtime > time.time() - 20.0:
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
self.log("hotline file too old, shutting down")
|
self.log("hotline file too old, shutting down")
|
||||||
|
Reference in New Issue
Block a user