You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
geoand
changed the title
Using quarkus-rest-client-reactive-jackson on rest-client-quickstart blocks when Uni is returned
Using quarkus-rest-client-reactive-jackson on rest-client-quickstart blocks when ComletionStage is returned
Mar 31, 2021
geoand
changed the title
Using quarkus-rest-client-reactive-jackson on rest-client-quickstart blocks when ComletionStage is returned
Using quarkus-rest-client-reactive-jackson on rest-client-quickstart blocks when Uni is returned
Mar 31, 2021
Uni was not being treated as an async return type resulting in
the client making blocking calls and trying to deserialize the
result into a Uni
Fixes: quarkusio#16148
Uni was not being treated as an async return type resulting in
the client making blocking calls and trying to deserialize the
result into a Uni
Fixes: quarkusio#16148
(cherry picked from commit 8977265)
juazugas
pushed a commit
to juazugas/quarkus
that referenced
this issue
Sep 30, 2021
Uni was not being treated as an async return type resulting in
the client making blocking calls and trying to deserialize the
result into a Uni
Fixes: quarkusio#16148
Describe the bug
When taking https://github.com/quarkusio/quarkus-quickstarts/tree/main/rest-client-quickstart and using
quarkus-resteasy-reactive-jackson
andquarkus-rest-client-reactive-jackson
instead of the original RESTEasy and rest-client dependencies (and also substituting@PathParam
for@RestPath
), then runningresults in a timeout exception that seems to be due to the underlying implementation of the client attempting to use blocking IO
The text was updated successfully, but these errors were encountered: