From: Josh Roesslein Date: Sat, 8 Aug 2009 22:24:36 +0000 (-0500) Subject: Adjust retry sleep time. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a518381f8fdae80ca97815448f18a957a0562c8d;p=tweepy.git Adjust retry sleep time. --- diff --git a/tweepy/streaming.py b/tweepy/streaming.py index fb52d8f..976707e 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -22,7 +22,7 @@ class Stream(object): host = 'stream.twitter.com' def __init__(self, username, password, callback, timeout=2.0, retry_count = 3, - retry_time = 5.0, snooze_time = 10.0, buffer_size=1500): + retry_time = 3.0, snooze_time = 10.0, buffer_size=1500): self.auth = BasicAuthHandler(username, password) self.running = False self.timeout = timeout