diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-12 17:17:05 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-12 17:17:05 -0700 |
commit | bd427849fb40412249b7464afdbdf8024fc6898c (patch) | |
tree | 644103f6413177a0f877a6832cf025a9f3d4cd00 /sleekxmpp | |
parent | 127d7acb91485efc43bd536d04b3c3847bd2c595 (diff) | |
download | slixmpp-bd427849fb40412249b7464afdbdf8024fc6898c.tar.gz slixmpp-bd427849fb40412249b7464afdbdf8024fc6898c.tar.bz2 slixmpp-bd427849fb40412249b7464afdbdf8024fc6898c.tar.xz slixmpp-bd427849fb40412249b7464afdbdf8024fc6898c.zip |
Reduce the maximum delay between connection retries to 10min.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/xmlstream/xmlstream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index 5ba4269f..8214e13d 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__) |