Retrying an Effect on a Specific TaggedError
How do I retry an Effect on only a certain TaggedError?
I want to use
Effect.Effect<string, SomeError | OtherError>I want to use
Effect.Effect<string, SomeError | OtherError> Effect.retry(effect, {
times: 2,
schedule: Schedule.fixed("200 millis"),
});