- Previous step results are no longer relevant.
- The failure was caused by corrupted or inconsistent state.
- You need a completely fresh execution with updated or clean data.
Restart a workflow run from DLQ
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Restart a failed Upstash Workflow run from the beginning, discarding previous step results and executing from scratch with the original payload.
Restart a workflow run from DLQ
import { Client } from "@upstash/workflow";
const client = new Client({ token: "<WORKFLOW_TOKEN>" });
await client.dlq.restart({
dlqId: "dlq-12345",
retries: 3,
});
Was this page helpful?