Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

higgs01/quarkus-reprod-38123

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

quarkus-reprod-38123

This is a reproduction-project for quarkusio/quarkus#38123

Steps to reproduce the issue

  1. Run ExampleTest
  2. Error 500 is thrown (although it shouldn't)
  3. 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>
        <!-- -->
  4. Run the test again
  5. No error is thrown (as it should be)

Releases

No releases published

Packages

No packages published

Languages