From 981df9a859f8ed8e9d295221635cf6efcb5df72c Mon Sep 17 00:00:00 2001 From: schillinge Date: Thu, 24 Jan 2019 09:25:11 +0100 Subject: [PATCH] Fixed accidential override of `sfc_encap` The old code basically hardcoded the use of NSH (which is still broken in OpenStack's SFC implementation). Change-Id: I0de4682bca69c7a349d678ae3a8179d78b37c605 Signed-off-by: schillinge --- osm_ro/vimconn_openstack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osm_ro/vimconn_openstack.py b/osm_ro/vimconn_openstack.py index 0930eb03..419caa01 100644 --- a/osm_ro/vimconn_openstack.py +++ b/osm_ro/vimconn_openstack.py @@ -1976,7 +1976,7 @@ class vimconnector(vimconn.vimconnector): self._reload_connection() # In networking-sfc the MPLS encapsulation is legacy # should be used when no full SFC Encapsulation is intended - sfc_encap = 'mpls' + correlation = 'mpls' if sfc_encap: correlation = 'nsh' sfp_dict = {'name': name, -- 2.17.1