diff options
author | Stamatis Katsaounis <mokats@intracom-telecom.com> | 2018-12-13 11:54:55 +0200 |
---|---|---|
committer | Stamatis Katsaounis <mokats@intracom-telecom.com> | 2018-12-13 10:46:50 +0000 |
commit | 3c74ef730c31343837b01c0e92e643d387ba8202 (patch) | |
tree | 4aa90c9bd2e9a948ad5c0f520facb17c8a3ae872 | |
parent | cbf31af798f23cab5f9757f04ffa2acadd8388af (diff) |
Conform to interface change of ODL node in Fuel Deploymentopnfv-7.1.0stable/gambia
JIRA: FUEL-393
This patch changes the interface where the odl node obtains the public
ip. This patch is a follow-up of [1].
[1] https://gerrit.opnfv.org/gerrit/#/c/65705/1
Change-Id: I12c144f80a7fcffbcc5cc7d57995d0a1501538a6
Signed-off-by: Stamatis Katsaounis <mokats@intracom-telecom.com>
(cherry picked from commit 4c26920af6c8a2bd083395bff269ba01570590d1)
-rw-r--r-- | sdnvpn/test/functest/testcase_3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdnvpn/test/functest/testcase_3.py b/sdnvpn/test/functest/testcase_3.py index 1a13eb7..48024cb 100644 --- a/sdnvpn/test/functest/testcase_3.py +++ b/sdnvpn/test/functest/testcase_3.py @@ -113,7 +113,7 @@ def main(): if installer_type in ['apex']: odl_interface = 'br-ex' elif installer_type in ['fuel']: - odl_interface = 'ens6' + odl_interface = 'br-ext' else: logger.error("Incompatible installer type") odl_ip, odl_netmask = test_utils.get_node_ip_and_netmask( |