Antonio Goncalves
Antonio Goncalves
I thought there was an `@ApplicationScoped` missing on the health check, but I still get the same error
@cescoffier you are right. The code works great in the Villain microservices (uses Hibernate) but not in the Hero (which uses Hibernate Reactive). @Sanne `PgPool` comes from Vert.x (`io.vertx.mutiny.pgclient.PgPool`). Isn't...
There is an authentication problem. All the tests in `UserResourceTest` fail with ``` status=401, title="Unauthorized", detail="HTTP 401 Unauthorized" java.lang.AssertionError: 1 expectation failed. Expected status code but was . ```
Here are some differences between the Mongo and SQL setup and code: * `InitialSetupMigration.java`: Creates the initial database setup * `MongockConfiguration.java` * `reflect-config-mongo.json` * `MongoDbTestResource.java` The entire Liquibase configuration disapears...
InitialSetupMigration can be simplified as follow: ``` public class InitialSetupMigration { @ConfigProperty(name = "quarkus.mongodb.database") String databaseName; public void onStart(@Observes StartupEvent ev) { MongoClient mongoClient = MongoClients.create(MongoClientSettings.builder().build()); MongoDatabase db = mongoClient.getDatabase(databaseName);...
@mraible unfortunatelly I won't be able to work on that, too much on my plate :o(
Ok, but we need to explain why. On the first lines we write "imperative", and then "reactive". We should at least say that we do not use anything reactive in...
Is this about PlantUML images ?
BTW Quarkus 2.1 comes with Keycloak as a DevServices : https://quarkus.io/blog/quarkus-2-1-0-final-released/ We should have a look into it
Thanks. @roryp have a look and let us know if you need more help