Get current thread correctly

This commit is contained in:
kjwon15 2017-11-25 03:09:38 +09:00
pare fa1840c0fb
commit 3faf7c6473

Veure arxiu

@ -1305,7 +1305,6 @@ class Mastodon:
class __stream_handle():
def __init__(self, connection):
self.connection = connection
self._thread = threading.current_thread()
def close(self):
self.connection.close()
@ -1314,6 +1313,7 @@ class Mastodon:
return self._thread.is_alive()
def _threadproc(self):
self._thread = threading.current_thread()
with closing(connection) as r:
try:
listener.handle_stream(r.iter_lines())