From bd427849fb40412249b7464afdbdf8024fc6898c Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Fri, 12 Aug 2011 17:17:05 -0700 Subject: [PATCH] Reduce the maximum delay between connection retries to 10min. --- sleekxmpp/xmlstream/xmlstream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index 5ba4269..8214e13 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -49,7 +49,7 @@ HANDLER_THREADS = 1 SSL_SUPPORT = True # Maximum time to delay between connection attempts is one hour. -RECONNECT_MAX_DELAY = 3600 +RECONNECT_MAX_DELAY = 600 log = logging.getLogger(__name__)