From: lloretgalleg Date: Fri, 23 Apr 2021 11:25:09 +0000 (+0000) Subject: Fixed bug 1452: Deploy KNF on dummy VIM X-Git-Tag: release-v10.0-start~5 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FRO.git;a=commitdiff_plain;h=23f50011d5be26c8aa16c54984c21f551c612b5e Fixed bug 1452: Deploy KNF on dummy VIM Change-Id: I21160233b99a1cfe27ec2bbc3ab3005a81160d84 Signed-off-by: lloretgalleg --- diff --git a/RO-plugin/osm_ro_plugin/vim_dummy.py b/RO-plugin/osm_ro_plugin/vim_dummy.py index c00071f8..fe3a8115 100644 --- a/RO-plugin/osm_ro_plugin/vim_dummy.py +++ b/RO-plugin/osm_ro_plugin/vim_dummy.py @@ -158,6 +158,11 @@ class VimDummyConnector(vimconn.VimConnector): nets.append(net) + # if no network is returned and search by name create a new one + if not nets and filter_dict and filter_dict.get("name"): + net_id, net = self.new_network(filter_dict.get("name"), "mgmt") + nets.append(net) + return nets def get_network(self, net_id):