Conversation
6f51bc0 to
45476ca
Compare
9b4a713 to
e64b27f
Compare
3d51bd7 to
d28c9a2
Compare
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
Nope, it's sadly not. |
| HttpServer httpServer; | ||
|
|
||
| private Response request(Map<String, String> headers) { | ||
| var baseUri = URI.create("http://localhost:" + httpServer.getPort()); |
There was a problem hiding this comment.
Can't you inject @TestHTTPResource URL testUrl?
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.
|
#3712 has been merged, is it now a good time to merge this one? |
Major changes: * Adapt MongoDbBackendBuilder to Quarkus 3.31 * Migrate Quarkus HTTP/managment port retrieval 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.
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.