Skip to content

Commit

Permalink
Fix typo in extra_config_paths variable
Browse files Browse the repository at this point in the history
This prevents the `extra-config-paths` feature to work correctly.
  • Loading branch information
felixedel committed Jan 9, 2024
1 parent 312f3ec commit e0dcf5b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion zubbi/scraper/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e0dcf5b

Please sign in to comment.