Joscorbe commented on code in PR #2226: URL: https://github.com/apache/jackrabbit-oak/pull/2226#discussion_r2098913502
########## oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStoreService.java: ########## @@ -340,7 +342,11 @@ private void registerNodeStore() throws IOException { String db = config.db(); boolean soKeepAlive = config.socketKeepAlive(); - MongoClientURI mongoURI = new MongoClientURI(uri); + ConnectionString mongoURI = new ConnectionString(uri); + MongoClientSettings settings = MongoClientSettings.builder() + .applyConnectionString(mongoURI) Review Comment: I had to revert this because the `mongoURI` is [used a few lines below](https://github.com/apache/jackrabbit-oak/pull/2226/files/974372ee2b6d26cfb898864d58eaa45b0a352a7b#diff-0e315af2cc5cc1327210891e5ba43454d739fd8bcdcfefb016d985f071a35cb2R359) in a info log. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: oak-dev-unsubscr...@jackrabbit.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org