This repository was archived by the owner on Dec 19, 2023. It is now read-only.
graphql requests are taken as async supported eventhough the processing is synchronous with 11.0.0 version #539
Unanswered
mutyasaisrikar
asked this question in
Q&A
Replies: 1 comment 3 replies
-
@oliemansm |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We were using
graphql-spring-boot-starter 6.0.0
and zalando logbook to log http requests and responses at the end of the request processing.But when upgraded to
graphql-spring-boot-starter 11.0.0
, the logbook filter post process is not getting executed because GraphQL is trying to start the request in an async way.When I tried to debug the flow, I can see that HttpRequestInvokerImpl.execute method is getting executed now which is doing this
request.startAsync(request, response);
.This was not happening with 6.0.0 version.
How can I disable this from happening so that my flow happens synchronously and my logbook will be executed.
Beta Was this translation helpful? Give feedback.
All reactions