You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/09/28 13:47:05 UTC

[camel] branch master updated (2ddb0a2 -> a9a9dcb)

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

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


    from 2ddb0a2  Upgrade Ignite to version 2.7.6
     new a4c6ed0  Camel-Zipkin: Fixed CS
     new a9a9dcb  Upgrade Artemis to version 2.10.1

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/main/java/org/apache/camel/zipkin/ServiceHostFunction.java   | 5 ++++-
 .../src/main/java/org/apache/camel/zipkin/ServicePortFunction.java   | 5 ++++-
 parent/pom.xml                                                       | 2 +-
 3 files changed, 9 insertions(+), 3 deletions(-)


[camel] 02/02: Upgrade Artemis to version 2.10.1

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

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

commit a9a9dcb285886f4b4088193437212fd9beeca660
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Sat Sep 28 15:46:37 2019 +0200

    Upgrade Artemis to version 2.10.1
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 5e66f83..9483a91 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -43,7 +43,7 @@
         <abdera-version>1.1.3</abdera-version>
         <!-- Note that activemq dependency is only used for testing! -->
         <activemq-version>5.15.10</activemq-version>
-        <activemq-artemis-version>2.10.0</activemq-artemis-version>
+        <activemq-artemis-version>2.10.1</activemq-artemis-version>
         <aether-version>1.0.2.v20150114</aether-version>
         <ahc-version>2.10.2</ahc-version>
         <ant-bundle-version>1.7.0_6</ant-bundle-version>


[camel] 01/02: Camel-Zipkin: Fixed CS

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

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

commit a4c6ed0a5df0abe732ff079102781cea0422352d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Sat Sep 28 15:42:50 2019 +0200

    Camel-Zipkin: Fixed CS
---
 .../src/main/java/org/apache/camel/zipkin/ServiceHostFunction.java   | 5 ++++-
 .../src/main/java/org/apache/camel/zipkin/ServicePortFunction.java   | 5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ServiceHostFunction.java b/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ServiceHostFunction.java
index ee71221..8190ca9 100644
--- a/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ServiceHostFunction.java
+++ b/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ServiceHostFunction.java
@@ -33,10 +33,13 @@ import org.apache.camel.util.StringHelper;
  * <p/>
  * This implementation is to return the host part only.
  */
-public class ServiceHostFunction {
+public final class ServiceHostFunction {
 
     private static final String HOST_PREFIX = "_SERVICE_HOST";
 
+    private ServiceHostFunction() {
+    }
+
     public static String apply(String remainder) {
         String key = remainder;
         String defaultValue = null;
diff --git a/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ServicePortFunction.java b/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ServicePortFunction.java
index 65ada3f..c17da85 100644
--- a/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ServicePortFunction.java
+++ b/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ServicePortFunction.java
@@ -33,10 +33,13 @@ import org.apache.camel.util.StringHelper;
  * <p/>
  * This implementation is to return the port part only.
  */
-public class ServicePortFunction {
+public final class ServicePortFunction {
 
     private static final String PORT_PREFIX = "_SERVICE_PORT";
 
+    private ServicePortFunction() {
+    }
+
     public static String apply(String remainder) {
         String key = remainder;
         String defaultValue = null;