I was wondering what the best way to handle replay when you are testing child workflows and the child workflow depends on context propagation from the parent. In this case, we have the child history but it doesn’t seem like the values store in the context are being passed down.
Questions:
where is the context propagation stored? is it in the parent or child history?
@maxim Thanks, so I realize that if you don’t set the context propagator in your replayer, it will inject your data into a nested structure in the context so it won’t be able to find it. Once i fixed the replayer, it worked.
without the context propagator configured in the replayer, the data in the headers in the execution history don’t translate properly as seen in the debugger above.
Sorry i meant to just give an example of what to look for and what happens when you don’t configure the propagator when you create the replayer to run the execution history.