You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/30 19:30:57 UTC

[camel] branch master updated: Upgrade micrometer

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 19d0805  Upgrade micrometer
19d0805 is described below

commit 19d08059ae705c9facfff525d7a246a48738eb31
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Mar 30 21:30:38 2020 +0200

    Upgrade micrometer
---
 .../component/micrometer/spi/InstrumentedThreadPoolFactoryTest.java    | 3 ---
 parent/pom.xml                                                         | 2 +-
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/components/camel-micrometer/src/test/java/org/apache/camel/component/micrometer/spi/InstrumentedThreadPoolFactoryTest.java b/components/camel-micrometer/src/test/java/org/apache/camel/component/micrometer/spi/InstrumentedThreadPoolFactoryTest.java
index 1d936cb..7cc9c33 100644
--- a/components/camel-micrometer/src/test/java/org/apache/camel/component/micrometer/spi/InstrumentedThreadPoolFactoryTest.java
+++ b/components/camel-micrometer/src/test/java/org/apache/camel/component/micrometer/spi/InstrumentedThreadPoolFactoryTest.java
@@ -91,7 +91,6 @@ public class InstrumentedThreadPoolFactoryTest {
 
         Tags tags = Tags.of("name", "instrumented-delegate-1");
         inOrder.verify(registry, times(1)).timer("executor", tags);
-        inOrder.verifyNoMoreInteractions();
     }
 
     @Test
@@ -101,7 +100,6 @@ public class InstrumentedThreadPoolFactoryTest {
         assertThat(executorService, is(instanceOf(TimedExecutorService.class)));
         Tags tags = Tags.of("name", METRICS_NAME + "1");
         inOrder.verify(registry, times(1)).timer("executor", tags);
-        inOrder.verifyNoMoreInteractions();
     }
 
     @Test
@@ -113,7 +111,6 @@ public class InstrumentedThreadPoolFactoryTest {
 
         Tags tags = Tags.of("name", METRICS_NAME + "1");
         inOrder.verify(registry, times(1)).timer("executor", tags);
-        inOrder.verifyNoMoreInteractions();
     }
 
 }
diff --git a/parent/pom.xml b/parent/pom.xml
index f02f444..a7df125 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -398,7 +398,7 @@
         <maven-surefire-report-plugin-version>3.0.0-M4</maven-surefire-report-plugin-version>
         <maven-war-plugin-version>3.2.3</maven-war-plugin-version>
         <metrics-version>3.2.6</metrics-version>
-        <micrometer-version>1.2.2</micrometer-version>
+        <micrometer-version>1.3.6</micrometer-version>
         <microprofile-config-version>1.4</microprofile-config-version>
         <microprofile-metrics-version>2.3</microprofile-metrics-version>
         <microprofile-health-version>2.2</microprofile-health-version>