diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-18 01:10:25 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-18 01:10:25 -0700 |
commit | e86e6eae81f42985036b7a636658ab68b6c6aa74 (patch) | |
tree | 8cdb6620eca3a149ac8e4f53e3e8975dfaadc15f | |
parent | 592c25f3528c51a601b2e449981d5b008aa274ac (diff) | |
download | slixmpp-e86e6eae81f42985036b7a636658ab68b6c6aa74.tar.gz slixmpp-e86e6eae81f42985036b7a636658ab68b6c6aa74.tar.bz2 slixmpp-e86e6eae81f42985036b7a636658ab68b6c6aa74.tar.xz slixmpp-e86e6eae81f42985036b7a636658ab68b6c6aa74.zip |
Up the timeout to 30sec instead of 10sec.
-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 ca8b5b6e..3b2b2f4c 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -45,7 +45,7 @@ else: # The time in seconds to wait before timing out waiting for response stanzas. -RESPONSE_TIMEOUT = 10 +RESPONSE_TIMEOUT = 30 # The number of threads to use to handle XML stream events. This is not the # same as the number of custom event handling threads. HANDLER_THREADS must |