This commit is contained in:
liris 2016-04-12 09:00:35 +09:00
parent f015008f90
commit fa97b1727f
2 changed files with 6 additions and 5 deletions

View File

@ -2,10 +2,11 @@ ChangeLog
============
- 0.36.0
- added support for using custom connection class(#235)
- use Named logger(#238)
- implement ping/pong timeout(#241)
- Corrects the syntax highlight code(#243)
- added support for using custom connection class (#235)
- use Named logger (#238)
- implement ping/pong timeout (#241)
- Corrects the syntax highlight code (#243)
- fixed failure to join thread before it is started (#242)
- 0.35.0
- Prints timings in console (#217)

View File

@ -222,7 +222,7 @@ class WebSocketApp(object):
# propagate SystemExit further
raise
finally:
if thread:
if thread and thread.isAlive():
event.set()
thread.join()
self.keep_running = False