From 7e2187d4bf5e2c7b6377000d42a3ae3f45bb3742 Mon Sep 17 00:00:00 2001 From: peusterm Date: Tue, 6 Sep 2016 10:42:12 +0200 Subject: [PATCH] Fix: Name SAP's interfaces always: sap0 --- src/emuvim/api/sonata/dummygatekeeper.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/emuvim/api/sonata/dummygatekeeper.py b/src/emuvim/api/sonata/dummygatekeeper.py index db67518..c3d8802 100755 --- a/src/emuvim/api/sonata/dummygatekeeper.py +++ b/src/emuvim/api/sonata/dummygatekeeper.py @@ -392,6 +392,8 @@ class Service(object): for sap in SAPs: # endpoints needed in this service sap_vnf_id, sap_vnf_interface = sap.split(':') + # Fix: lets fix the name of the SAP interface to "sap0" + sap_vnf_interface = "sap0" # set of the connection_point ids found in the nsd (in the examples this is 'ns') self.sap_identifiers.add(sap_vnf_id) -- 2.17.1