Update ns_terminate code about cancel wait delete vnfs multithreading
[vfc/nfvo/lcm.git] / lcm / ns / biz / ns_terminate.py
index 32845dd..a4ae4df 100644 (file)
@@ -145,11 +145,7 @@ class TerminateNsService(threading.Thread):
             job_msg = "Delete vnfinst:[%s] %s." % (vnfinst.nfinstid, delete_result)
             JobUtil.add_job_status(self.job_id, cur_progress, job_msg)
             vnf_jobs.append((vnfinst.nfinstid, vnf_job_id))
-
-        thread = threading.Thread(
-            target=self.wait_delete_vnfs,
-            args=(vnf_jobs, cur_progress, step_progress,))
-        thread.start()
+        self.wait_delete_vnfs(vnf_jobs, cur_progress, step_progress)
 
     def wait_delete_vnfs(self, vnf_jobs, cur_progress, step_progress):
         for vnfinstid, vnfjobid in vnf_jobs: