Definition
Full definition of retry
Retries make automations resilient to transient failures — a brief network outage, a third-party rate limit, a momentary 5xx error. Tiny Command retries failed actions automatically with exponential backoff (1s, 4s, 16s, 1m) up to 5 attempts. Permanent failures (4xx errors like 401, 403, 404) skip retries because re-attempting won't fix the root cause.
In practice
Retry examples
Transient retry
Stripe returns a 502 — Tiny Command retries 4 seconds later, succeeds, workflow continues.
Used by
Apps that exemplify retry
See retry in action across real integrations.
FAQ
Common questions about retry
Can I customize retry behavior?
Yes — per workflow, you can pick aggressive, default, or no-retry policies.