Propagate errors from child fiber
I have an Effect that uses a FiberHandle:
elsewhere, this is getting invoked:
however, the errors that are catchable from within the fiber are not propagated to the parent Effect. This is tracked in the types as well - the type of
What's the best way to lift errors from the fiber into the parent Effect?
Thanks again!
elsewhere, this is getting invoked:
however, the errors that are catchable from within the fiber are not propagated to the parent Effect. This is tracked in the types as well - the type of
DoWork is now Effect.Effect<RuntimeFiber<void, CustomError>, never, never> - so the error channel in the parent is never.What's the best way to lift errors from the fiber into the parent Effect?
Thanks again!
