You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by co...@apache.org on 2019/06/27 09:02:07 UTC

[camel] branch camel-2.24.x updated (7537d7c -> 668c4ff)

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

coheigea pushed a change to branch camel-2.24.x
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 7537d7c  Fixing failing scala tests
     new ff776de  Upgrade zookeeper
     new 1e78be3  Fixing Zookeeper test that was previously removed
     new 668c4ff  Updating Spring boot deps

The 3 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:
 .../camel/component/zookeeper/operations/CreateOperationTest.java   | 6 ++++--
 parent/pom.xml                                                      | 2 +-
 .../spring-boot-dm/camel-spring-boot-dependencies/pom.xml           | 2 +-
 3 files changed, 6 insertions(+), 4 deletions(-)


[camel] 02/03: Fixing Zookeeper test that was previously removed

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

coheigea pushed a commit to branch camel-2.24.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 1e78be3249649df60f8100045f04d81d56f86155
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Tue Jun 25 12:00:38 2019 +0100

    Fixing Zookeeper test that was previously removed
---
 .../camel/component/zookeeper/operations/CreateOperationTest.java   | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/components/camel-zookeeper/src/test/java/org/apache/camel/component/zookeeper/operations/CreateOperationTest.java b/components/camel-zookeeper/src/test/java/org/apache/camel/component/zookeeper/operations/CreateOperationTest.java
index 48624c8..6b75d9e 100644
--- a/components/camel-zookeeper/src/test/java/org/apache/camel/component/zookeeper/operations/CreateOperationTest.java
+++ b/components/camel-zookeeper/src/test/java/org/apache/camel/component/zookeeper/operations/CreateOperationTest.java
@@ -16,7 +16,7 @@
  */
 package org.apache.camel.component.zookeeper.operations;
 
-import java.util.Collections;
+import java.util.ArrayList;
 import java.util.List;
 
 import org.apache.camel.component.zookeeper.ZooKeeperTestSupport;
@@ -96,7 +96,9 @@ public class CreateOperationTest extends ZooKeeperTestSupport {
     public void createNodeWithSpecificAccess() throws Exception {
         CreateOperation create = new CreateOperation(connection, "/four");
         create.setData(testPayload.getBytes());
-        List<ACL> perms = Collections.singletonList(new ACL(Perms.CREATE, Ids.ANYONE_ID_UNSAFE));
+        List<ACL> perms = new ArrayList<>();
+        perms.add(new ACL(Perms.CREATE, Ids.ANYONE_ID_UNSAFE));
+        perms.add(new ACL(Perms.READ, Ids.ANYONE_ID_UNSAFE));
         create.setPermissions(perms);
 
         OperationResult<String> result = create.get();


[camel] 03/03: Updating Spring boot deps

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

coheigea pushed a commit to branch camel-2.24.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 668c4ff9ab082ea4c2b7aa46cac04cf8ff72d83c
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Jun 26 17:45:19 2019 +0100

    Updating Spring boot deps
---
 .../spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml b/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml
index 6b2e963..c2a5eb7 100644
--- a/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml
+++ b/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml
@@ -3466,7 +3466,7 @@
       <dependency>
         <groupId>org.apache.zookeeper</groupId>
         <artifactId>zookeeper</artifactId>
-        <version>3.4.13</version>
+        <version>3.4.14</version>
       </dependency>
       <dependency>
         <groupId>org.awaitility</groupId>


[camel] 01/03: Upgrade zookeeper

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

coheigea pushed a commit to branch camel-2.24.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit ff776de819f24c4e578f666386daa8047dd4a042
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun May 26 21:28:57 2019 +0200

    Upgrade zookeeper
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index a1610b2..e0ad934 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -754,7 +754,7 @@
     <zipkin-reporter-version>2.7.13</zipkin-reporter-version>
     <zipkin-version>2.11.12</zipkin-version>
     <zjsonpatch-version>0.3.0</zjsonpatch-version>
-    <zookeeper-version>3.4.13</zookeeper-version>
+    <zookeeper-version>3.4.14</zookeeper-version>
     <zookeeper-guava-version>16.0</zookeeper-guava-version>
     <zxing-version>3.3.3</zxing-version>
     <zxing-bundle-version>3.3.3_1</zxing-bundle-version>