Repository: oozie Updated Branches: refs/heads/master 43e3f40b5 -> ca98c6793
OOZIE-2466 Repeated failure of TestMetricsInstrumentation.testSamplers (fdenes via rkanter) Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/ca98c679 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/ca98c679 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/ca98c679 Branch: refs/heads/master Commit: ca98c6793a399f5c269e4a6197fe7c80703dbb5a Parents: 43e3f40 Author: Robert Kanter <[email protected]> Authored: Thu Mar 3 18:23:20 2016 -0800 Committer: Robert Kanter <[email protected]> Committed: Thu Mar 3 18:23:20 2016 -0800 ---------------------------------------------------------------------- .../java/org/apache/oozie/util/TestMetricsInstrumentation.java | 3 ++- release-log.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/ca98c679/core/src/test/java/org/apache/oozie/util/TestMetricsInstrumentation.java ---------------------------------------------------------------------- diff --git a/core/src/test/java/org/apache/oozie/util/TestMetricsInstrumentation.java b/core/src/test/java/org/apache/oozie/util/TestMetricsInstrumentation.java index 67b4dc4..061c20a 100644 --- a/core/src/test/java/org/apache/oozie/util/TestMetricsInstrumentation.java +++ b/core/src/test/java/org/apache/oozie/util/TestMetricsInstrumentation.java @@ -164,7 +164,8 @@ public class TestMetricsInstrumentation extends XTestCase { assertEquals(1D, inst.getMetricRegistry().getHistograms().get("a.1.histogram").getSnapshot().getMean(), 0.01D); assertEquals(2D, inst.getMetricRegistry().getHistograms().get("a.2.histogram").getSnapshot().getMean(), 0.02D); - assertEquals(4D, inst.getMetricRegistry().getHistograms().get("b.1.histogram").getSnapshot().getMean(), 0.5D); + assertEquals(4.5D, inst.getMetricRegistry().getHistograms().get("b.1.histogram").getSnapshot().getMean(), + 0.5D); } finally { scheduledExecutorService.shutdownNow(); } http://git-wip-us.apache.org/repos/asf/oozie/blob/ca98c679/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 838eafa..f766a7c 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- Oozie 4.3.0 release (trunk - unreleased) +OOZIE-2466 Repeated failure of TestMetricsInstrumentation.testSamplers (fdenes via rkanter) OOZIE-2470 Remove infinite socket timeouts in the Oozie email action (harsh) OOZIE-2246 CoordinatorInputCheckCommand does not behave properly when har file is one of data dependency and doesn't exist (satishsaley via puru) OOZIE-2446 Job does not fail during submission if non existent credential is specified (satishsaley via puru)
