X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Flcm%2Fnf%2Fbiz%2Fquery_vnf.py;h=09fab6ca72dc274cb2d2efffb437717efac53e0b;hb=9e6a8075db99f06574cd483bf42d30550f9aca46;hp=bd4a1e3af46db03ababfa40e011b2e76c91f72a7;hpb=d2dc48b3cec803261a2673cac09a7fffefd43e7e;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/lcm/nf/biz/query_vnf.py b/lcm/lcm/nf/biz/query_vnf.py index bd4a1e3a..09fab6ca 100644 --- a/lcm/lcm/nf/biz/query_vnf.py +++ b/lcm/lcm/nf/biz/query_vnf.py @@ -29,14 +29,14 @@ class QueryVnf: def query_single_vnf(self): vnf_inst = NfInstModel.objects.filter(nfinstid=self.vnf_inst_id) if not vnf_inst.exists(): - raise NFLCMException('VnfInst(%s) does not exist' % self.vnf_inst_id) + raise NFLCMException('VnfInst(%s) does not exist.' % self.vnf_inst_id) resp_data = self.fill_resp_data(vnf_inst[0]) return resp_data def query_multi_vnf(self): vnf_insts = NfInstModel.objects.all() if not vnf_insts: - raise NFLCMException('VnfInsts does not exist') + raise NFLCMException('VnfInsts does not exist.') resp_data = [] for vnf_inst in vnf_insts: resp_data.append(self.fill_resp_data(vnf_inst)) @@ -78,7 +78,8 @@ class QueryVnf: vm = VmInstModel.objects.filter(vmid=vnfc.vmid) if not vm: raise NFLCMException('VmInst(%s) does not exist.' % vnfc.vmid) - storage = StorageInstModel.objects.filter(ownerid=vm[0].vmid) + storage = StorageInstModel.objects.filter(vimid=vm[0].vmid) + # TODO: previously, ownerid=vm[0].vmid, but ownerid is not a field of StorageInstModel. if not storage: raise NFLCMException('StorageInst(%s) does not exist.' % vm[0].vmid) vnfc_dic = {