You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2021/01/19 11:53:03 UTC

[camel-kafka-connector] branch master updated (29f6fa5 -> e5038e7)

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

orpiske pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git.


    from 29f6fa5  Bump Apicurio Registry to version 1.3.2.Final
     new e2d32e8  Fix HDFS compatibility issues with Jetty deps on camel-hdfs
     new e5038e7  Move HDFS tests to the default set after fixing the HDFS test incompatibilities

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:
 tests/itests-hdfs/pom.xml                                             | 4 ++++
 .../apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java    | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)


[camel-kafka-connector] 02/02: Move HDFS tests to the default set after fixing the HDFS test incompatibilities

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

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

commit e5038e77d279bc9443abc3a194f666d12ac90976
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Tue Jan 19 09:53:35 2021 +0100

    Move HDFS tests to the default set after fixing the HDFS test incompatibilities
---
 .../org/apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java  | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tests/itests-hdfs/src/test/java/org/apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java b/tests/itests-hdfs/src/test/java/org/apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java
index 6b793d3..00234b5 100644
--- a/tests/itests-hdfs/src/test/java/org/apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java
+++ b/tests/itests-hdfs/src/test/java/org/apache/camel/kafkaconnector/hdfs/sink/CamelSinkHDFSITCase.java
@@ -34,7 +34,6 @@ import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.TestInstance;
 import org.junit.jupiter.api.Timeout;
-import org.junit.jupiter.api.condition.EnabledIfSystemProperty;
 import org.junit.jupiter.api.extension.RegisterExtension;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -44,7 +43,6 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertTrue;
 import static org.junit.jupiter.api.Assertions.fail;
 
-@EnabledIfSystemProperty(named = "enable.slow.tests", matches = "true")
 @TestInstance(TestInstance.Lifecycle.PER_CLASS)
 public class CamelSinkHDFSITCase extends AbstractKafkaTest {
     @RegisterExtension


[camel-kafka-connector] 01/02: Fix HDFS compatibility issues with Jetty deps on camel-hdfs

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

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

commit e2d32e848a261bf66cd98f8a702dacffc00b7ab8
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Tue Jan 19 09:52:34 2021 +0100

    Fix HDFS compatibility issues with Jetty deps on camel-hdfs
---
 tests/itests-hdfs/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/itests-hdfs/pom.xml b/tests/itests-hdfs/pom.xml
index 9db2faf..042da72 100644
--- a/tests/itests-hdfs/pom.xml
+++ b/tests/itests-hdfs/pom.xml
@@ -66,6 +66,10 @@
                     <groupId>com.sun.jersey</groupId>
                     <artifactId>jersey-server</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.eclipse.jetty</groupId>
+                    <artifactId>jetty-util</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
     </dependencies>