fixed #242
This commit is contained in:
@@ -2,10 +2,11 @@ ChangeLog
|
|||||||
============
|
============
|
||||||
|
|
||||||
- 0.36.0
|
- 0.36.0
|
||||||
- added support for using custom connection class(#235)
|
- added support for using custom connection class (#235)
|
||||||
- use Named logger(#238)
|
- use Named logger (#238)
|
||||||
- implement ping/pong timeout(#241)
|
- implement ping/pong timeout (#241)
|
||||||
- Corrects the syntax highlight code(#243)
|
- Corrects the syntax highlight code (#243)
|
||||||
|
- fixed failure to join thread before it is started (#242)
|
||||||
|
|
||||||
- 0.35.0
|
- 0.35.0
|
||||||
- Prints timings in console (#217)
|
- Prints timings in console (#217)
|
||||||
|
@@ -222,7 +222,7 @@ class WebSocketApp(object):
|
|||||||
# propagate SystemExit further
|
# propagate SystemExit further
|
||||||
raise
|
raise
|
||||||
finally:
|
finally:
|
||||||
if thread:
|
if thread and thread.isAlive():
|
||||||
event.set()
|
event.set()
|
||||||
thread.join()
|
thread.join()
|
||||||
self.keep_running = False
|
self.keep_running = False
|
||||||
|
Reference in New Issue
Block a user