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

yuzelin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 34d6d1831 [e2e] Fix ContainerLaunchException (#2697)
34d6d1831 is described below

commit 34d6d1831c1e94579ee154b77e0020239c105bc1
Author: monster <60029759+monsterchenz...@users.noreply.github.com>
AuthorDate: Tue Jan 23 19:49:28 2024 +0800

    [e2e] Fix ContainerLaunchException (#2697)
---
 .../src/test/java/org/apache/paimon/tests/E2eTestBase.java          | 1 +
 paimon-flink/paimon-flink-cdc/pom.xml                               | 6 +++++-
 pom.xml                                                             | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git 
a/paimon-e2e-tests/src/test/java/org/apache/paimon/tests/E2eTestBase.java 
b/paimon-e2e-tests/src/test/java/org/apache/paimon/tests/E2eTestBase.java
index d074e2dc4..eb38854b1 100644
--- a/paimon-e2e-tests/src/test/java/org/apache/paimon/tests/E2eTestBase.java
+++ b/paimon-e2e-tests/src/test/java/org/apache/paimon/tests/E2eTestBase.java
@@ -103,6 +103,7 @@ public abstract class E2eTestBase {
                         .withEnv("NETWORK_ID", ((Network.NetworkImpl) 
network).getName())
                         .withLogConsumer("jobmanager_1", new LogConsumer(LOG))
                         .withLogConsumer("taskmanager_1", new LogConsumer(LOG))
+                        .withStartupTimeout(Duration.ofMinutes(3))
                         .withLocalCompose(true);
         if (withKafka) {
             List<String> kafkaServices = Arrays.asList("zookeeper", "kafka");
diff --git a/paimon-flink/paimon-flink-cdc/pom.xml 
b/paimon-flink/paimon-flink-cdc/pom.xml
index 00035f9d6..a9ff74b0d 100644
--- a/paimon-flink/paimon-flink-cdc/pom.xml
+++ b/paimon-flink/paimon-flink-cdc/pom.xml
@@ -40,7 +40,7 @@ under the License.
         <avro.version>1.11.1</avro.version>
         <geometry.version>2.2.0</geometry.version>
         <json-path.version>2.8.0</json-path.version>
-        <mongodb.testcontainers.version>1.18.3</mongodb.testcontainers.version>
+        <mongodb.testcontainers.version>1.19.1</mongodb.testcontainers.version>
         
<flink.connector.pulsar.version>4.0.0-1.17</flink.connector.pulsar.version>
     </properties>
 
@@ -237,6 +237,10 @@ under the License.
                     <groupId>log4j</groupId>
                     <artifactId>log4j</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.testcontainers</groupId>
+                    <artifactId>testcontainers</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
 
diff --git a/pom.xml b/pom.xml
index 60fbb5a0f..6724904ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -112,7 +112,7 @@ under the License.
         <javax.annotation-api.version>1.3.2</javax.annotation-api.version>
         <flink.forkCount>1C</flink.forkCount>
         <flink.reuseForks>true</flink.reuseForks>
-        <testcontainers.version>1.17.2</testcontainers.version>
+        <testcontainers.version>1.19.1</testcontainers.version>
         <awaitility.version>4.2.0</awaitility.version>
 
         <!-- Can be set to any value to reproduce a specific build. -->

Reply via email to