Drop recordRequestPercentiles property

Drop the `recordRequestPercentiles` property as it overlaps with the
property based `MeterFilter` support.

Fixes gh-11982
This commit is contained in:
Phillip Webb
2018-02-09 12:33:57 -08:00
parent 9a31b08816
commit d259f68fbf
5 changed files with 6 additions and 29 deletions

View File

@@ -57,8 +57,7 @@ public class MetricsRestTemplateCustomizerTests {
this.restTemplate = new RestTemplate();
this.mockServer = MockRestServiceServer.createServer(this.restTemplate);
this.customizer = new MetricsRestTemplateCustomizer(this.registry,
new DefaultRestTemplateExchangeTagsProvider(), "http.client.requests",
true);
new DefaultRestTemplateExchangeTagsProvider(), "http.client.requests");
this.customizer.customize(this.restTemplate);
}