Upgrade HDRHistogram to version 2.1.6.

This release fixes https://github.com/HdrHistogram/HdrHistogram/pull/68 which
we have been hitting in our CI tests, for instance:
http://build-us-00.elastic.co/job/es_core_master_metal/10567/
This commit is contained in:
Adrien Grand 2015-07-30 09:55:12 +02:00
parent 2d2f21e760
commit 23fa535bfa
3 changed files with 1 additions and 7 deletions

View File

@ -20,7 +20,6 @@ package org.elasticsearch.search.aggregations.metrics;
import com.google.common.collect.Lists;
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
import org.elasticsearch.action.search.SearchResponse;
import org.elasticsearch.common.logging.Loggers;
import org.elasticsearch.script.Script;
@ -51,7 +50,6 @@ import static org.hamcrest.Matchers.sameInstance;
/**
*
*/
@AwaitsFix(bugUrl = "single test methods fail with occassional seeds (see HDRPercentilesTests.testScript_ExplicitSingleValued_WithParams for example) but only if run as a whole test class not if run as a single test method")
public class HDRPercentileRanksTests extends AbstractNumericTests {
private static double[] randomPercents(long minValue, long maxValue) {
@ -372,7 +370,6 @@ public class HDRPercentileRanksTests extends AbstractNumericTests {
@Override
@Test
@AwaitsFix(bugUrl="Fails with seed: B75FCDC119D90BBE, Colin to fix")
public void testScript_SingleValued_WithParams() throws Exception {
int sigDigits = randomSignificantDigits();
Map<String, Object> params = new HashMap<>();

View File

@ -20,7 +20,6 @@ package org.elasticsearch.search.aggregations.metrics;
import com.google.common.collect.Lists;
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
import org.elasticsearch.action.search.SearchResponse;
import org.elasticsearch.common.logging.Loggers;
import org.elasticsearch.script.Script;
@ -52,7 +51,6 @@ import static org.hamcrest.Matchers.sameInstance;
/**
*
*/
@AwaitsFix(bugUrl = "single test methods fail with occassional seeds (see testScript_ExplicitSingleValued_WithParams for example) but only if run as a whole test class not if run as a single test method")
public class HDRPercentilesTests extends AbstractNumericTests {
private static double[] randomPercentiles() {
@ -379,7 +377,6 @@ public class HDRPercentilesTests extends AbstractNumericTests {
@Override
@Test
@AwaitsFix(bugUrl = "fails with -Dtests.seed=5BFFA768633A0A59 but only if run as a whole test class not if run as a single test method")
public void testScript_ExplicitSingleValued_WithParams() throws Exception {
Map<String, Object> params = new HashMap<>();
params.put("dec", 1);

View File

@ -397,7 +397,7 @@
<dependency>
<groupId>org.hdrhistogram</groupId>
<artifactId>HdrHistogram</artifactId>
<version>2.1.5</version>
<version>2.1.6</version>
</dependency>
<dependency>