Using setTimeout() instead of step.sleep() in a Cloudflare Workflow?
# Using setTimeout() instead of step.sleep() in a Cloudflare Workflow? ## Summary A workflow relied on Cloudflare K/V writes with a strict rate limit (1 write/sec per key) after each API call. Initial mitigation used `step.sleep()` to avoid throttling, but the engineer explored substituting it with `setTimeout()` to simplify step architecture. Replacing the native sleep … Read more