Commit 9dffc8f1 authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Fixed close bug on AsyncClient

parent eb348de3
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2,6 +2,9 @@ Changes since 0.7.1
===========================
This section will document changes to the library since the last release

## Bug Fixes
- Fixed a bug that caused the AsyncClient to crash when calling close()

Changes from 0.7.0 to 0.7.1
===========================

+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ class AsyncClient(baseasync.BaseAsync):

    def close(self):
        self.shutdown()
        self.flush()
        self.wait()

    def _end_close(self):
        self.writer_thread.kill()