From: Ed Page Date: Fri, 12 Mar 2010 23:03:16 +0000 (-0600) Subject: Extending auto-close timeout to 10 seconds to work around possible ... issues X-Git-Url: http://git.maemo.org/git/?p=theonering;a=commitdiff_plain;h=5af970c77ef16ec8bc8ea624c7cfcde1d029392e Extending auto-close timeout to 10 seconds to work around possible ... issues --- diff --git a/src/connection_manager.py b/src/connection_manager.py index d21c8a7..c643f59 100644 --- a/src/connection_manager.py +++ b/src/connection_manager.py @@ -64,7 +64,7 @@ class TheOneRingConnectionManager(tp.ConnectionManager): Overrides tp.ConnectionManager """ result = tp.ConnectionManager.disconnected(self, conn) - gobject_utils.timeout_add_seconds(5, self._shutdown) + gobject_utils.timeout_add_seconds(10, self._shutdown) def quit(self): """ diff --git a/src/theonering.py b/src/theonering.py index 9209162..62fd686 100755 --- a/src/theonering.py +++ b/src/theonering.py @@ -34,7 +34,7 @@ import constants import connection_manager -IDLE_TIMEOUT = 5 +IDLE_TIMEOUT = 10 def run_theonering(persist):