Merge branch 'develop' into coretk-config

This commit is contained in:
Huy Pham 2019-11-01 08:49:33 -07:00
commit bdf13ca037
2 changed files with 11 additions and 1 deletions

View file

@ -123,7 +123,7 @@ class CoreHandler(socketserver.BaseRequestHandler):
for thread in self.handler_threads:
logging.info("waiting for thread: %s", thread.getName())
thread.join(timeout)
if thread.isAlive():
if thread.is_alive():
logging.warning(
"joining %s failed: still alive after %s sec",
thread.getName(),