snazy opened a new pull request, #3484: URL: https://github.com/apache/polaris/pull/3484
Quarkus 3.31.0 comes with two changes to the MongoDB extension. Spoiler: this is a no-op change for older Quarkus versions. The way `MongoClient` instances are produced by the Quarkus MongoDB extension has changed in a way that makes it impossible to get a _managed_ `MongoClient` from `MongoClients`. This requires a change to `MongoDbBackendBuilder`. It also introduces a new configuration option `quarkus.mongodb.active` to enable explicitly enablement of the default or named MongoDB drivers. The default value of this configuration is `true`. The readiness and health management endpoints report the status of the MongoDB drivers. With the default `quarkus.mongodb.active=true`, the MongoDB driver would always "break" those checks, if MongoDB is not configured. This is handled by a custom configuration-source, which provides `quarkus.mongodb.active=true` if NoSQL is being used with Mongo, otherwise it provides `quarkus.mongodb.active=false`. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
