From 068e6acbd512a2bf0ecf4eee3941bc824d811f6c Mon Sep 17 00:00:00 2001 From: Cesar Francisco San Nicolas Martinez Date: Fri, 9 Feb 2024 15:31:52 +0100 Subject: Fix the way we are passing the awxkit base path to resources (#14862) --- awxkit/awxkit/api/resources.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'awxkit') diff --git a/awxkit/awxkit/api/resources.py b/awxkit/awxkit/api/resources.py index 17397e9c66..4ffb70a9b5 100644 --- a/awxkit/awxkit/api/resources.py +++ b/awxkit/awxkit/api/resources.py @@ -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)) @@ -305,4 +302,4 @@ class Resources(object): return '{0}{1}'.format(getattr(self, prefix), getattr(self, resource)) -resources = Resources(api=config.api_base_path) +resources = Resources() -- cgit v1.2.3