From 5e47d1a63534a3b8d1399c4322b1a902d67c5427 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 25 Jul 2014 17:32:31 +0200 Subject: [PATCH] default daemon timeout after 5 minutes --- lib/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/daemon.py b/lib/daemon.py index a0db151f5..c463f91ea 100644 --- a/lib/daemon.py +++ b/lib/daemon.py @@ -169,7 +169,7 @@ class NetworkServer: self.socket.settimeout(1) self.running = False # daemon terminates after period of inactivity - self.timeout = config.get('daemon_timeout', 60) + self.timeout = config.get('daemon_timeout', 5*60) self.lock = threading.RLock() # each GUI is a client of the daemon