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
{{ message }}
This repository was archived by the owner on Dec 19, 2023. It is now read-only.
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.
We were using
graphql-spring-boot-starter 6.0.0and 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.