Open
Conversation
1 task
6f51bc0 to
45476ca
Compare
1 task
9b4a713 to
e64b27f
Compare
This was referenced Feb 4, 2026
3d51bd7 to
d28c9a2
Compare
dimas-b
reviewed
Feb 4, 2026
Contributor
dimas-b
left a comment
There was a problem hiding this comment.
Nice upgrade 🎉
I wonder whether the new MongoDbBackendBuilder is usable in older Quarkus versions 🤔
...in/java/org/apache/polaris/persistence/nosql/quarkus/backend/MongoDBConfigSourceFactory.java
Outdated
Show resolved
Hide resolved
...in/java/org/apache/polaris/persistence/nosql/quarkus/backend/MongoDBConfigSourceFactory.java
Outdated
Show resolved
Hide resolved
Member
Author
Nope, it's sadly not. |
adutra
reviewed
Feb 5, 2026
| HttpServer httpServer; | ||
|
|
||
| private Response request(Map<String, String> headers) { | ||
| var baseUri = URI.create("http://localhost:" + httpServer.getPort()); |
Contributor
There was a problem hiding this comment.
Can't you inject @TestHTTPResource URL testUrl?
Contributor
There was a problem hiding this comment.
BTW this was just a nit, no need to change.
The Mongo-DB changes are necessary to account for the new way to define (multiple) Mongo drivers and that have an `active` flag. The internal-ish Mongo related classes in the Quarkus extension have changed. The added config-source makes the whole change transparent to users.
adutra
approved these changes
Feb 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates Quarkus to 3.31.x.
The Mongo-DB changes are necessary to account for the new way to define (multiple) Mongo drivers and that have an
activeflag. The internal-ish Mongo related classes in the Quarkus extension have changed. The added config-source makes the whole change transparent to users.