Workflows - Workflows now supports delay functions when retrying
Cloudflare has introduced support for delay functions in Workflows retry logic. Previously, retry delays were static; now developers can define custom delay functions that compute the wait time before each retry attempt. This enables patterns like exponential backoff or jitter without external logic. The feature is part of the Workflows product on Cloudflare's Developer Platform and is available immediately. No specific version numbers or pricing changes were announced. This update gives developers finer control over workflow reliability and cost by reducing unnecessary retries.
// why it matters
Dynamic retry delays let developers optimize error handling without external scheduling logic.