This is an automated email from the ASF dual-hosted git repository.
reschke pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/trunk by this push:
new 1b0a692aa4 OAK-10645: MongoDS docker container: set default Mongo
version to 4.4 (#1305)
1b0a692aa4 is described below
commit 1b0a692aa426f4be8ca97ab65eb6629baec86ce1
Author: Julian Reschke <[email protected]>
AuthorDate: Tue Feb 13 14:26:32 2024 +0100
OAK-10645: MongoDS docker container: set default Mongo version to 4.4
(#1305)
---
.../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;