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

* [apiclient] fix default version bug #991

Merged
merged 1 commit into from
Nov 24, 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: 2 additions & 2 deletions apiclient/harvester_api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, endpoint, token=None, session=None):

self._version = None
self.endpoint = endpoint
self.load_managers("")
self.load_managers()

@property
def cluster_version(self):
Expand All @@ -56,7 +56,7 @@ def cluster_version(self):
def __repr__(self):
return f"HarvesterAPI({self.endpoint!r}, {self.session.headers['Authorization']!r})"

def load_managers(self, version=""):
def load_managers(self, version="0.0.0"):
self.hosts = mgrs.HostManager.for_version(version)(self, version)
self.keypairs = mgrs.KeypairManager.for_version(version)(self, version)
self.images = mgrs.ImageManager.for_version(version)(self, version)
Expand Down