failureFunction or failureUrl request has failed, you can retry it using the retryFailureFunction method:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
failureFunction or failureUrl request has failed, you can retry it using the retryFailureFunction method:
import { Client } from "@upstash/workflow";
const client = new Client({ token: "<QSTASH_TOKEN>" });
// Retry the failure callback for a specific DLQ message
const response = await client.dlq.retryFailureFunction({
dlqId: "dlq-12345" // The ID of the DLQ message to retry
});
Was this page helpful?