projects
/
osm
/
NBI.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75d5a4e
)
Filter with project in slice nsd selection
27/9027/1
author
Felipe Vicens
<felipe.vicens@atos.net>
Fri, 22 May 2020 14:37:39 +0000
(16:37 +0200)
committer
tierno
<alfonso.tiernosepulveda@telefonica.com>
Wed, 3 Jun 2020 09:48:13 +0000
(09:48 +0000)
Change-Id: Id0141df33b8470bc6739b26da0fd72166c160972
Signed-off-by: Felipe Vicens <felipe.vicens@atos.net>
osm_nbi/instance_topics.py
patch
|
blob
|
history
diff --git
a/osm_nbi/instance_topics.py
b/osm_nbi/instance_topics.py
index
6ac3bce
..
e091abd
100644
(file)
--- a/
osm_nbi/instance_topics.py
+++ b/
osm_nbi/instance_topics.py
@@
-1420,7
+1420,9
@@
class NsiLcmOpTopic(BaseTopic):
if nstId == netslice_subnet["id"]:
nsd_id = netslice_subnet["nsd-ref"]
if nsd_id not in nsds:
- nsds[nsd_id] = self.db.get_one("nsds", {"id": nsd_id})
+ _filter = self._get_project_filter(session)
+ _filter["id"] = nsd_id
+ nsds[nsd_id] = self.db.get_one("nsds", _filter)
return nsds[nsd_id]
else:
raise EngineException("Invalid parameter nstId='{}' is not one of the "