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

shenghang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 6921d5f019 [Hotfix][CI] Update Qdrant image to v1.15.0 for 
compatibility (#10503)
6921d5f019 is described below

commit 6921d5f01970ce2e6a2dba696bbc7b1b590fa473
Author: dy102 <[email protected]>
AuthorDate: Wed Feb 25 20:34:55 2026 +0900

    [Hotfix][CI] Update Qdrant image to v1.15.0 for compatibility (#10503)
---
 .../apache/seatunnel/e2e/connector/v2/qdrant/QdrantIT.java    | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-qdrant-e2e/src/test/java/org/apache/seatunnel/e2e/connector/v2/qdrant/QdrantIT.java
 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-qdrant-e2e/src/test/java/org/apache/seatunnel/e2e/connector/v2/qdrant/QdrantIT.java
index 21854a12ca..ae883b2ab2 100644
--- 
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-qdrant-e2e/src/test/java/org/apache/seatunnel/e2e/connector/v2/qdrant/QdrantIT.java
+++ 
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-qdrant-e2e/src/test/java/org/apache/seatunnel/e2e/connector/v2/qdrant/QdrantIT.java
@@ -62,7 +62,12 @@ public class QdrantIT extends TestSuiteBase implements 
TestResource {
     private static final String ALIAS = "qdrante2e";
     private static final String SOURCE_COLLECTION = "source_collection";
     private static final String SINK_COLLECTION = "sink_collection";
-    private static final String IMAGE = "qdrant/qdrant:latest";
+    /**
+     * Fixed Qdrant at v1.15.0 for stability; upgrading to v1.17.0+ requires 
ensuring the SeaTunnel
+     * Qdrant connector is compatible with the latest breaking changes.
+     */
+    private static final String IMAGE = "qdrant/qdrant:v1.15.0";
+
     private QdrantContainer container;
     private QdrantClient qdrantClient;
 
@@ -139,7 +144,7 @@ public class QdrantIT extends TestSuiteBase implements 
TestResource {
     public void testQdrant(TestContainer container)
             throws IOException, InterruptedException, ExecutionException {
         Container.ExecResult execResult = 
container.executeJob("/qdrant-to-qdrant.conf");
-        Assertions.assertEquals(execResult.getExitCode(), 0);
-        
Assertions.assertEquals(qdrantClient.countAsync(SINK_COLLECTION).get(), 10);
+        Assertions.assertEquals(0, execResult.getExitCode());
+        Assertions.assertEquals(10, 
qdrantClient.countAsync(SINK_COLLECTION).get());
     }
 }

Reply via email to