You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2022/06/22 20:55:17 UTC

[tomee] branch master updated (e6db358313 -> b7ab62a72a)

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

jlmonteiro pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git


    from e6db358313 Make sure there is no port conflict on our CI (ActiveMQ 61616 port)
     new 1781ca50cb Adjust metrics payload based on new SmallRye integration
     new b7ab62a72a Fault-tolerance not yet fully integrated

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/test/java/org/superbiz/rest/WeatherServiceTest.java         | 4 +++-
 examples/pom.xml                                                    | 6 +++---
 2 files changed, 6 insertions(+), 4 deletions(-)


[tomee] 02/02: Fault-tolerance not yet fully integrated

Posted by jl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b7ab62a72a58ea2fa8056c7331323cdae39b33db
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Wed Jun 22 12:44:18 2022 +0200

    Fault-tolerance not yet fully integrated
---
 examples/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples/pom.xml b/examples/pom.xml
index 512e126ad6..ab65c54849 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -113,6 +113,7 @@
     <!-- Todo not supported yet
     <module>mp-faulttolerance-fallback</module>
     <module>mp-faulttolerance-retry</module>
+    <module>mp-faulttolerance-timeout</module>
     -->
     <module>mp-jwt-bean-validation</module>
     <module>mp-jwt-bean-validation-strongly-typed</module>
@@ -126,6 +127,8 @@
     <module>mp-rest-jwt-jwk</module>
     <module>mp-rest-jwt-principal</module>
     <module>mp-rest-jwt-public-key</module>
+    <module>mp-rest-client</module>
+    <module>mp-custom-healthcheck</module>
     <module>mtom</module>
     <module>multi-jpa-provider-testing</module>
     <module>multiple-arquillian-adapters</module>
@@ -211,16 +214,13 @@
     <module>mvc-cxf</module>
     <module>mvc-cxf-hibernate</module>
     -->
-    <module>mp-rest-client</module>
     <module>mvc-resteasy</module>
-    <module>mp-custom-healthcheck</module>
     <module>jsonb-configuration</module>
     <module>jsonb-custom-serializer</module>
 <!--    <module>vaadin-lts-v08-simple</module>-->
 <!--    <module>vaadin-lts-v10-simple</module>-->
 <!--    <module>vaadin-vxx-simple</module>-->
     <module>cloud-tomee-azure</module>
-    <module>mp-faulttolerance-timeout</module>
     <module>xa-datasource</module>
     <module>websocket-jms</module>
 


[tomee] 01/02: Adjust metrics payload based on new SmallRye integration

Posted by jl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 1781ca50cb4644b10e336291f30267fc27bfd3c5
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Wed Jun 22 12:42:14 2022 +0200

    Adjust metrics payload based on new SmallRye integration
---
 .../src/test/java/org/superbiz/rest/WeatherServiceTest.java           | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/examples/mp-metrics-counted/src/test/java/org/superbiz/rest/WeatherServiceTest.java b/examples/mp-metrics-counted/src/test/java/org/superbiz/rest/WeatherServiceTest.java
index c4c3bd903b..4052f465ff 100644
--- a/examples/mp-metrics-counted/src/test/java/org/superbiz/rest/WeatherServiceTest.java
+++ b/examples/mp-metrics-counted/src/test/java/org/superbiz/rest/WeatherServiceTest.java
@@ -100,7 +100,9 @@ public class WeatherServiceTest {
                 .accept(MediaType.APPLICATION_JSON)
                 .get(String.class);
 
-        assertEquals("{\"weather_day_status\":1}", metric);
+        assertEquals("{\n" +
+                     "  \"weather_day_status;weather=day\":1\n" +
+                     "}", metric);
     }
 
     @Test