From c246fa7d4e372a6f611fd46c0acd96b3b54a3676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milio=20Gonzalez?= Date: Thu, 24 Oct 2024 13:11:43 -0400 Subject: [PATCH] Fix a bug where App_Base.getSplunkbasePath() was broken and did not work at all. Fixes #295. --- contentctl/objects/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contentctl/objects/config.py b/contentctl/objects/config.py index 9057a4c4..c50ab900 100644 --- a/contentctl/objects/config.py +++ b/contentctl/objects/config.py @@ -47,7 +47,7 @@ class App_Base(BaseModel,ABC): def getSplunkbasePath(self)->HttpUrl: - return HttpUrl(SPLUNKBASE_URL.format(uid=self.uid, release=self.version)) + return HttpUrl(SPLUNKBASE_URL.format(uid=self.uid, version=self.version)) @abstractmethod def getApp(self, config:test, stage_file:bool=False)->str: