From a518381f8fdae80ca97815448f18a957a0562c8d Mon Sep 17 00:00:00 2001 From: Josh Roesslein Date: Sat, 8 Aug 2009 17:24:36 -0500 Subject: [PATCH] Adjust retry sleep time. --- tweepy/streaming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.25.1