190
170
thread_name = 'smart-server-child' + thread_name_suffix
191
171
connection_thread = threading.Thread(
192
172
None, handler.serve, name=thread_name)
196
173
connection_thread.setDaemon(True)
197
174
connection_thread.start()
200
176
def start_background_thread(self, thread_name_suffix=''):