-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
access_loggers: use new-style names #9921
access_loggers: use new-style names #9921
Conversation
Modifies the well-known-names of the built-in access loggers to use the same name as the extension build system. Risk Level: low, previous name is still accepted Testing: existing tests Docs Changes: updated names Release Notes: updated Deprecated: old names are logged as deprecated Signed-off-by: Stephan Zuercher <[email protected]>
@kyessenov do you mind taking a look? |
@zuercher After #9618, |
It's correct that with typed_config the name is ignored. Mostly I'm undertaking this change to unify the build extension and config names for v2 in the short term. The top of each protobuf doc currently emits an extension name that isn't necessarily the correct one to use with |
LGTM. I agree we need this to support untyped configs in the short term, for consistency with the rest of the extensions. I can do a follow-up to assign random optional names to extensions later, once we feel that the world has moved on to v3 and 1.13. |
So can we move forward with this? |
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.
Hero!
Modifies the well-known-names of the built-in access loggers to
use the same name as the extension build system.
(This is the first in a series, but I expect whatever changes may be
requested here will apply to all the rest, so I'm going to hold the others
back.)
Risk Level: low, previous name is still accepted
Testing: added test to prove factory accepts old names
Docs Changes: updated names
Release Notes: updated
Deprecated: old names are logged as deprecated
Signed-off-by: Stephan Zuercher [email protected]