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