Skip to content
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

Metric binding to protected #1033

Merged
merged 2 commits into from
Mar 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pull request if there was one.
Current
-------
### Fixed:
- [Fix bug where metric binding hook has set to private so it couldn't be overriden](https://github.com/yahoo/fili/pull/1033)
- [Adds missing argument to format string in a rarely used error path in RequestLog](https://github.com/yahoo/fili/pull/1031)
- [Fix bug where some Aggregation model types were incorrectly reporting precision](https://github.com/yahoo/fili/pull/1017)
* CardinalityAggregation, LongMaxAggregation, and LongMinAggregation were incorrectly reporting their precision as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ protected void configure() {
*
* @param binder The binder to bind the generator to.
*/
private void bindMetricGenerator(AbstractBinder binder) {
protected void bindMetricGenerator(AbstractBinder binder) {
List<String> protocols = Collections.emptyList();
TypeLiteral<List<String>> stringListLiteral = new TypeLiteral<List<String>>() { };

Expand Down