Do I still need to use `Context propagation` when ...
# micronaut
b
Do I still need to use
Context propagation
when using Coroutines?
It feels like the Propagation is a Reactor workaround to not loose state when switching threads And also when using Thread Local stuff.. But in coroutines the context is inherited structurally so if you have a context at top level, you can extract the data at any level below that unless you overwrite the context. This propagation I've never heard of in the coroutines world, since it's not needed to be handled manually. I'm probably missing something, is there someone from Micronaut here that might be able to help on the subject?