Add workaround proposed in PROD-10894
diff --git a/tcp_tests/managers/opencontrail_manager.py b/tcp_tests/managers/opencontrail_manager.py
index 1bb7f43..fb4e982 100644
--- a/tcp_tests/managers/opencontrail_manager.py
+++ b/tcp_tests/managers/opencontrail_manager.py
@@ -20,12 +20,12 @@
__config = None
__underlay = None
- _openstack_actions = None
+ __openstack_actions = None
def __init__(self, config, underlay, openstack_deployed):
self.__config = config
self.__underlay = underlay
- self._openstack_actions = openstack_deployed
+ self.__openstack_actions = openstack_deployed
super(OpenContrailManager, self).__init__(
config=config, underlay=underlay)