From e0dcf5b3fa2736558c0ebab83a121b9ddd3ebabf Mon Sep 17 00:00:00 2001 From: Felix Edel Date: Tue, 9 Jan 2024 10:06:10 +0100 Subject: [PATCH] Fix typo in extra_config_paths variable This prevents the `extra-config-paths` feature to work correctly. --- CHANGELOG.md | 6 ++++++ zubbi/scraper/main.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1afc4d..6c6f835 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.6.2 + +### Fixes +- Fixed a bug in the tenant parser preventing the `extra-config-paths` feature + to work correctly. + ## 2.6.1 ### Fixes diff --git a/zubbi/scraper/main.py b/zubbi/scraper/main.py index 1e0d64a..123c0a8 100644 --- a/zubbi/scraper/main.py +++ b/zubbi/scraper/main.py @@ -558,7 +558,7 @@ def _scrape_repo_map( def scrape_repo(repo, tenants, reusable_repos, scrape_time): job_files, role_files = Scraper( repo, - tenants.get("extra-config-paths", {}), + tenants.get("extra_config_paths", {}), ).scrape() is_reusable_repo = repo.repo_name in reusable_repos