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 2018/03/10 08:53:35 UTC

[camel] branch master updated (f45dde8 -> 2a9a4c3)

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

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


    from f45dde8  Polished
     new b96d7d1  Improved test
     new 2a9a4c3  Skip test that can cause CI server issues

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:
 .../test/java/org/apache/camel/component/xmpp/XmppRouteChatTest.java    | 2 ++
 .../java/org/apache/camel/example/artemis/amqp/ArtemisAmqpTest.java     | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
davsclaus@apache.org.

[camel] 01/02: Improved test

Posted by da...@apache.org.
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

commit b96d7d1e03d9c2dfe3e319142299435d533f8460
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sat Mar 10 09:52:20 2018 +0100

    Improved test
---
 .../java/org/apache/camel/example/artemis/amqp/ArtemisAmqpTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/camel-example-artemis-amqp-blueprint/src/test/java/org/apache/camel/example/artemis/amqp/ArtemisAmqpTest.java b/examples/camel-example-artemis-amqp-blueprint/src/test/java/org/apache/camel/example/artemis/amqp/ArtemisAmqpTest.java
index c604bef..44eda3d 100644
--- a/examples/camel-example-artemis-amqp-blueprint/src/test/java/org/apache/camel/example/artemis/amqp/ArtemisAmqpTest.java
+++ b/examples/camel-example-artemis-amqp-blueprint/src/test/java/org/apache/camel/example/artemis/amqp/ArtemisAmqpTest.java
@@ -36,7 +36,7 @@ public class ArtemisAmqpTest extends CamelBlueprintTestSupport {
     @Override
     protected String useOverridePropertiesWithConfigAdmin(Dictionary props) { 
         //obtain an available port
-        int port = AvailablePortFinder.getNextAvailable();
+        int port = AvailablePortFinder.getNextAvailable(8080);
 
         //override the netty port to use
         props.put("netty.port", "" + port);

-- 
To stop receiving notification emails like this one, please contact
davsclaus@apache.org.

[camel] 02/02: Skip test that can cause CI server issues

Posted by da...@apache.org.
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

commit 2a9a4c36a61a56a9f49c50698e3d7fa1008afbd0
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sat Mar 10 09:53:25 2018 +0100

    Skip test that can cause CI server issues
---
 .../test/java/org/apache/camel/component/xmpp/XmppRouteChatTest.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppRouteChatTest.java b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppRouteChatTest.java
index 2436c41..21096c0 100644
--- a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppRouteChatTest.java
+++ b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppRouteChatTest.java
@@ -20,11 +20,13 @@ import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.camel.impl.JndiRegistry;
 import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Ignore;
 import org.junit.Test;
 
 /**
  * @version 
  */
+@Ignore("This test is flaky on CI server")
 public class XmppRouteChatTest extends CamelTestSupport {
 
     protected MockEndpoint consumerEndpoint;

-- 
To stop receiving notification emails like this one, please contact
davsclaus@apache.org.