Nack (fail/retry) a task
nack_taskMark a claimed task as failed; it re-queues until maxAttempts then becomes dead. Control retry timing with delayMs or disable retries by setting requeue to false.
Instructions
Report a claimed task as failed. By default it is re-queued until maxAttempts is exhausted (then it lands in dead). Must carry the claim fencingToken. delayMs backs off the retry; requeue:false fails it immediately without retrying.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| error | No | failure reason to store | |
| taskId | Yes | ||
| delayMs | No | back off this long before the retry | |
| requeue | No | false = fail now without retrying (default true) | |
| fencingToken | Yes |