Tom Fingerman
Tom Fingerman
@llfbandit thanks for the answer. Is it possible to bring this option back?
Is there any workaround that does not include injecting the observationRegistry to all controllers? And is there any plan to fix this issue?
@marcingrzejszczak in general the problem is that when a coroutine opens, the context might be lost in the child coroutines. for example: ```kotlin @RestController class FooRestController { @GetMapping suspend fun...
@marcingrzejszczak @sdeleuze If it helps, i played with spring's code and the only thing that worked for me is getting the observationContext and using it in `org.springframework.core.CoroutinesUtils#invokeSuspendingFunction` ```java CoroutineContext combinedContext;...
Any updates regarding this issue?
Hi @rrayst, any chance to re-evaluate the PR please?
@rrayst any news about this PR?
I would like to add on this use case with another one. I work on creating mock servers for my unit tests. One of the backends i need to mock...