Skip to content

Commit

Permalink
Fix the way we are passing the awxkit base path to resources
Browse files Browse the repository at this point in the history
  • Loading branch information
CFSNM committed Feb 9, 2024
1 parent 40150a2 commit 97f2932
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions awxkit/awxkit/api/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,13 +284,10 @@ class Resources(object):
_workflow_job_workflow_nodes = r'workflow_jobs/\d+/workflow_nodes/'
_subscriptions = 'config/subscriptions/'
_workflow_jobs = 'workflow_jobs/'
api = '/api/'
api = str(config.api_base_path)
common = api + r'v\d+/'
v2 = api + 'v2/'

def __init__(self, api):
self.api = api

def __getattr__(self, resource):
if resource[:3] == '___':
raise AttributeError('No existing resource: {}'.format(resource))
Expand All @@ -305,4 +302,4 @@ def __getattr__(self, resource):
return '{0}{1}'.format(getattr(self, prefix), getattr(self, resource))


resources = Resources(api=config.api_base_path)
resources = Resources()

0 comments on commit 97f2932

Please sign in to comment.