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