Issue with Schedule Getting Converted to forever
Is there anything wrong with this schedule? It seems to just go rogue randomly and gets converted to schedule.forever
Effect.retry(
$(
Schedule.union(
Schedule.exponential("500 millis"),
Schedule.spaced("5 seconds"),
),
Schedule.jittered,
),
)