This is a reproduction-project for quarkusio/quarkus#38123
- Run
ExampleTest
- Error 500 is thrown (although it shouldn't)
- Change switch from the reactive REST-Client to the non-reactive one:
<!-- switch those two --> <!-- this doesn't work --> <!-- <dependency>--> <!-- <groupId>io.quarkus</groupId>--> <!-- <artifactId>quarkus-rest-client-reactive-jackson</artifactId>--> <!-- </dependency>--> <!-- this works --> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-rest-client-jackson</artifactId> </dependency> <!-- -->
- Run the test again
- No error is thrown (as it should be)