You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2020/09/03 08:59:28 UTC

[camel-quarkus] branch master updated: Fixed the build (arangodb itests)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new dd414f6  Fixed the build (arangodb itests)
dd414f6 is described below

commit dd414f60e2fc8f9c5562e1a936f0d0d3f937066b
Author: aldettinger <al...@gmail.com>
AuthorDate: Thu Sep 3 10:52:29 2020 +0200

    Fixed the build (arangodb itests)
---
 .../camel/quarkus/component/arangodb/it/ArangodbTestResource.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration-tests/arangodb/src/test/java/org/apache/camel/quarkus/component/arangodb/it/ArangodbTestResource.java b/integration-tests/arangodb/src/test/java/org/apache/camel/quarkus/component/arangodb/it/ArangodbTestResource.java
index beb6a64..d6e0d18 100644
--- a/integration-tests/arangodb/src/test/java/org/apache/camel/quarkus/component/arangodb/it/ArangodbTestResource.java
+++ b/integration-tests/arangodb/src/test/java/org/apache/camel/quarkus/component/arangodb/it/ArangodbTestResource.java
@@ -44,7 +44,7 @@ public class ArangodbTestResource implements ContainerResourceLifecycleManager {
                     .withExposedPorts(PORT_DEFAULT)
                     .withEnv(ARANGO_NO_AUTH, "1")
                     .withNetworkAliases(CONTAINER_NAME)
-                    .waitingFor(Wait.forListeningPort());
+                    .waitingFor(Wait.forLogMessage(".*ArangoDB [(]version .*[)] is ready for business. Have fun!.*", 1));
 
             container.start();