Skip to content

Commit

Permalink
Merge pull request #107 from bmwcarit/fe-fix-extra-contig-paths
Browse files Browse the repository at this point in the history
Fix typo in extra_config_paths variable
  • Loading branch information
westphahl authored Jan 9, 2024
2 parents 312f3ec + e0dcf5b commit 73ad419
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 73ad419

Please sign in to comment.