I have two request scoped beans. One is holding request data and another is using that data in error case to include it in error response. this however doesn't work if I add Retry annotation.
See attached project with tests. Quarkus 0.26.1
getting-started.zip
- Start project.
- do curl http://localhost:8080/hello/error?data=hello
- expected response should contain hello, but returns nothing
- Delete Retry annotation from GreetingResource.helloError and all works as expected