diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-04-21 16:18:17 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-04-21 16:34:57 +0200 |
commit | c61ea93a8414f824e7c26cf78e5c52ee8220963c (patch) | |
tree | 18b602dacb680922133f46e7bd5443f07225b38a | |
parent | 6279d9372d0a1827bb14e365cd02e9888941315d (diff) |
Bypass NoneType errors when creating router
It converts private subnet name to str as it's mandary till [1].
It could be reverted as soon as [2] is merged in snaps.
[1] https://gerrit.opnfv.org/gerrit/#/c/56091/
[2] https://gerrit.opnfv.org/gerrit/#/c/56171/
Change-Id: I849944fa9d4d2be21fe1a37b76c4cfd231b6d56f
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | functest/opnfv_tests/openstack/vping/vping_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/opnfv_tests/openstack/vping/vping_base.py b/functest/opnfv_tests/openstack/vping/vping_base.py index 05fe9b453..13e0efbc8 100644 --- a/functest/opnfv_tests/openstack/vping/vping_base.py +++ b/functest/opnfv_tests/openstack/vping/vping_base.py @@ -97,8 +97,8 @@ class VPingBase(testcase.TestCase): private_net_name = getattr( config.CONF, 'vping_private_net_name') + self.guid - private_subnet_name = getattr( - config.CONF, 'vping_private_subnet_name') + self.guid + private_subnet_name = str(getattr( + config.CONF, 'vping_private_subnet_name') + self.guid) private_subnet_cidr = getattr(config.CONF, 'vping_private_subnet_cidr') vping_network_type = None |