From 57a634ea50ef4fa4f273e1ab60be5fb2d56febd2 Mon Sep 17 00:00:00 2001 From: Iss <74388823+isshaddad@users.noreply.github.com> Date: Tue, 14 Apr 2026 10:09:16 -0400 Subject: [PATCH] docs: note retry.onThrow as a parallel wait (#3248) --- docs/troubleshooting.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/troubleshooting.mdx b/docs/troubleshooting.mdx index f30a5eac4..02793dd41 100644 --- a/docs/troubleshooting.mdx +++ b/docs/troubleshooting.mdx @@ -173,6 +173,7 @@ Waits include: - `wait.until()` - `task.triggerAndWait()` - `task.batchTriggerAndWait()` +- `retry.onThrow()` - And any of our functions with `wait` in the name. This restriction exists because we suspend the task server after a wait, and resume it when the wait is done. At the moment, if you do more than one wait, the run will never continue when deployed, so we throw this error instead.