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

reschke pushed a commit to branch OAK-10645
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git

commit 87fc5d64b5a4c0f3f82ad453d57b62f9940ebd1a
Author: Julian Reschke <resc...@apache.org>
AuthorDate: Tue Feb 13 14:26:00 2024 +0100

    OAK-10645: MongoDS docker container: set default Mongo version to 4.4
---
 .../apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java
 
b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java
index c7d204b69d..1e16a5acb6 100644
--- 
a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java
+++ 
b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoDockerRule.java
@@ -43,7 +43,7 @@ public class MongoDockerRule extends ExternalResource {
 
     private static final Logger LOG = 
LoggerFactory.getLogger(MongoDockerRule.class);
 
-    private static final String VERSION = System.getProperty("mongo.version", 
"3.6");
+    private static final String VERSION = System.getProperty("mongo.version", 
"4.4");
     private static final String MONGO_IMAGE = "mongo:" + VERSION;
     private static final AtomicReference<Exception> STARTUP_EXCEPTION = new 
AtomicReference<>();
     private static final int DEFAULT_MONGO_PORT = 27017;

Reply via email to