summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/xmlstream.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-08-12 17:17:05 -0700
committerLance Stout <lancestout@gmail.com>2011-08-12 17:17:05 -0700
commitbd427849fb40412249b7464afdbdf8024fc6898c (patch)
tree644103f6413177a0f877a6832cf025a9f3d4cd00 /sleekxmpp/xmlstream/xmlstream.py
parent127d7acb91485efc43bd536d04b3c3847bd2c595 (diff)
downloadslixmpp-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/xmlstream/xmlstream.py')
-rw-r--r--sleekxmpp/xmlstream/xmlstream.py2
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__)