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