-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add glob/dump function for config tree #728
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #728 +/- ##
==========================================
- Coverage 75.01% 74.92% -0.09%
==========================================
Files 294 295 +1
Lines 25018 25065 +47
==========================================
+ Hits 18768 18781 +13
- Misses 6250 6284 +34
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
a7e8b10
to
cef9894
Compare
336aa39
to
6e15966
Compare
if isinstance(config_object, ConfigurationEntry): | ||
yield from self._sub(config_object, Path(entry) / Path(item), pattern) | ||
except Exception: | ||
log.warning("Could not open configuration item: %s", item) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs to be self.target.log, can you create a PR to fix that?
(DIS-2990)