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

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


The following commit(s) were added to refs/heads/main by this push:
     new 0586925d302 (chores) ci: fixes invalid log instantiation
0586925d302 is described below

commit 0586925d302aad5daa6bf5b6d89f517ddcc7babb
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Mon Jul 25 18:07:08 2022 +0200

    (chores) ci: fixes invalid log instantiation
    
    The hadoop-common dependency causes the code to instantiate a different
    Logger type which, leads to an invalid evaluation of the log level. This
    causes the exchange formatter to not run which causes the test to fail.
    
    This was introduced by upgrading hadoop libraries in 
7fdf3ac65fb8d57682a565b9f31a03d046a182e0
---
 dsl/camel-endpointdsl/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dsl/camel-endpointdsl/pom.xml b/dsl/camel-endpointdsl/pom.xml
index 9e348b9753f..2f52140141d 100644
--- a/dsl/camel-endpointdsl/pom.xml
+++ b/dsl/camel-endpointdsl/pom.xml
@@ -83,6 +83,10 @@
                     <groupId>org.apache.drill.exec</groupId>
                     <artifactId>*</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.apache.hadoop</groupId>
+                    <artifactId>hadoop-common</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>

Reply via email to