From 0e8030caed9b44d570cb7cf6fcba9726bf8f0a3b Mon Sep 17 00:00:00 2001 From: Joel Bender Date: Thu, 8 Sep 2016 23:41:21 -0400 Subject: [PATCH] wrong way to start a thread --- samples/MultipleReadPropertyThreaded.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/MultipleReadPropertyThreaded.py b/samples/MultipleReadPropertyThreaded.py index 5632049..5f080ed 100755 --- a/samples/MultipleReadPropertyThreaded.py +++ b/samples/MultipleReadPropertyThreaded.py @@ -141,8 +141,8 @@ def main(): read_thread = ReadPointListThread(point_list) if _debug: _log.debug(" - read_thread: %r", read_thread) - # get it running when the code is running - deferred(read_thread.run) + # start it running when the core is running + deferred(read_thread.start) _log.debug("running")