Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a retrier-wrap to the nova client for octavia tests #1162

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion zaza/openstack/utilities/openstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
from zaza.openstack.utilities import (
exceptions,
generic as generic_utils,
ObjectRetrierWraps,
)
import zaza.utilities.networking as network_utils

Expand Down Expand Up @@ -379,7 +380,8 @@ def get_nova_session_client(session, version=None):
"""
if not version:
version = 2
return novaclient_client.Client(version, session=session)
return ObjectRetrierWraps(
novaclient_client.Client(version, session=session))


def get_neutron_session_client(session):
Expand Down
Loading