Merge branch 'develop' into coretk-enhance/disable-runtime-editing-custom-service-config

This commit is contained in:
Huy Pham 2020-02-27 11:00:09 -08:00
commit f8a3f0a2d4
11 changed files with 451 additions and 828 deletions

View file

@ -146,8 +146,9 @@ def start_streamer(stream: Any, handler: Callable[[core_pb2.Event], None]) -> No
:param handler: function that handles an event
:return: nothing
"""
thread = threading.Thread(target=stream_listener, args=(stream, handler))
thread.daemon = True
thread = threading.Thread(
target=stream_listener, args=(stream, handler), daemon=True
)
thread.start()