-
Notifications
You must be signed in to change notification settings - Fork 519
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
logdog: switch to use apiclient cli to get settings #3946
Conversation
This changes logdog to fetch settings using the apiclient. This creates two breaking changes. First logdog will now include sections such as 'os' in the log. This provides more information in the log. Secondly instead of removing the existence of secret settings their values are replaced with REDACTED. This allows the user to see the setting was there while maintaining the scrubbing of secrets.
Updated commit message with description of the breaking change |
use datastore::deserialization::from_map; | ||
use datastore::serialization::to_pairs; | ||
use glob::{glob, Pattern}; | ||
use glob::glob; |
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.
We can drop the glob
dependency it looks like?
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.
I wish but it is used in another method i used udeps to validate
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.
its used by handle_glob_request
Issue number: 3784
Closes #3784
Description of changes:
Testing done:
Terms of contribution:
By submitting this pull request, I agree that this contribution is dual-licensed under the terms of both the Apache License, version 2.0, and the MIT license.