Make sure to disconnect the streams as tweepy implements it

This commit is contained in:
2021-07-02 10:35:20 -05:00
parent 9053fcd5de
commit 77eadb42bb
2 changed files with 7 additions and 5 deletions

View File

@@ -510,9 +510,8 @@ class Session(base.baseSession):
self.stream_thread = call_threaded(self.stream.filter, follow=self.stream_listener.users, stall_warnings=True)
def stop_streaming(self):
if hasattr(self, "stream_thread"):
self.stream_thread.join()
log.debug("Stopping Streaming Endpoint...")
self.stream.running = False
log.debug("Stream stopped for accounr {}".format(self.db["user_name"]))
def handle_new_status(self, status, user):
""" Handles a new status present in the Streaming API. """