From e05311f69a646949f2c32af6a96ec080b28a1147 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@allmydata.com>
Date: Tue, 25 Sep 2007 19:22:33 -0700
Subject: [PATCH] client.py: increase hotline timeout, the check_memory test is
 failing

---
 src/allmydata/client.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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")
-- 
2.45.2