1
0
Fork 0
mirror of https://github.com/correl/SleekXMPP.git synced 2025-03-20 09:19:24 -09:00

Reduce the maximum delay between connection retries to 10min.

This commit is contained in:
Lance Stout 2011-08-12 17:17:05 -07:00
parent 127d7acb91
commit bd427849fb

View file

@ -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__)