Rename Stream.retry_count to max_retries
authorHarmon <Harmon758@gmail.com>
Sat, 23 Jan 2021 19:17:52 +0000 (13:17 -0600)
committerHarmon <Harmon758@gmail.com>
Sat, 23 Jan 2021 19:17:52 +0000 (13:17 -0600)
tweepy/streaming.py

index ba8b508ffa3bd8c22bcc6f5b603c0948c968e0d9..968af32d455566e45d11c4b94f1fb49003145575 100644 (file)
@@ -129,7 +129,7 @@ class Stream:
         self.listener = listener
         self.running = False
         self.daemon = options.get("daemon", False)
-        self.retry_count = options.get("retry_count", inf)
+        self.max_retries = options.get("max_retries", inf)
 
         # The default socket.read size. Default to less than half the size of
         # a tweet so that it reads tweets with the minimal latency of 2 reads
@@ -166,7 +166,7 @@ class Stream:
         http_420_error_wait_start = 60
 
         try:
-            while self.running and error_count <= self.retry_count:
+            while self.running and error_count <= self.max_retries:
                 try:
                     with self.session.request(
                         'POST', url, params=params, data=body,