Fix bug of delete vnfs
authorying.yunlong <ying.yunlong@zte.com.cn>
Tue, 25 Apr 2017 01:35:21 +0000 (09:35 +0800)
committerying.yunlong <ying.yunlong@zte.com.cn>
Tue, 25 Apr 2017 01:35:21 +0000 (09:35 +0800)
Change-Id: Ic90eccf067ecb3f268a0b8f7a55548e2956aed0f
Issue-Id: GVNFM-50
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
lcm/lcm/nf/vnfs/vnf_cancel/delete_vnf_identifier.py

index 413d488..c2afe07 100644 (file)
@@ -13,7 +13,7 @@
 # limitations under the License.
 import logging
 
-from lcm.pub.database.models import NfInstModel
+from lcm.pub.database.models import NfInstModel, NfvoRegInfoModel
 from lcm.pub.exceptions import NFLCMException
 
 logger = logging.getLogger(__name__)
@@ -29,7 +29,7 @@ class DeleteVnf:
         if not vnf_insts.exists():
             logger.warn('VnfInst(%s) does not exist' % self.nf_inst_id)
             return
-        sel_vnf = vnf_insts[0]
+        #sel_vnf = vnf_insts[0]
         #if sel_vnf.status != 'NOT_INSTANTIATED':
         #    raise NFLCMException("Don't allow to delete vnf(status:[%s])" % sel_vnf.status)
         NfInstModel.objects.filter(nfinstid=self.nf_inst_id).delete()