Extending auto-close timeout to 10 seconds to work around possible ... issues
authorEd Page <eopage@byu.net>
Fri, 12 Mar 2010 23:03:16 +0000 (17:03 -0600)
committerEd Page <eopage@byu.net>
Fri, 12 Mar 2010 23:03:16 +0000 (17:03 -0600)
src/connection_manager.py
src/theonering.py

index d21c8a7..c643f59 100644 (file)
@@ -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):
                """
index 9209162..62fd686 100755 (executable)
@@ -34,7 +34,7 @@ import constants
 import connection_manager
 
 
-IDLE_TIMEOUT = 5
+IDLE_TIMEOUT = 10
 
 
 def run_theonering(persist):