diff --git a/src/allmydata/client.py b/src/allmydata/client.py index 766cae047..b997f306e 100644 --- a/src/allmydata/client.py +++ b/src/allmydata/client.py @@ -300,7 +300,7 @@ class Client(node.Node, pollmixin.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() - 60.0: + if mtime > time.time() - 120.0: return else: self.log("hotline file too old, shutting down")