Skip to content

CheckUnknownSMSMessageTask

Overview

Runs a task body inside one named action context.

Delivery writes to several tables per message and has no request to take a context from, so without this each write would record an event that nothing associates with the rest.

on_failure

Error handler.

This is run by the worker when the task fails.

Arguments: exc (Exception): The exception raised by the task. task_id (str): Unique id of the failed task. args (Tuple): Original arguments for the task that failed. kwargs (Dict): Original keyword arguments for the task that failed. einfo (~billiard.einfo.ExceptionInfo): Exception information.

Returns: None: The return value of this handler is ignored.

Signature

on_failure(self, exc, task_id, args, kwargs, einfo)

Parameters

NameTypeRequiredDescription
selfyes
excyes
task_idyes
argsyes
kwargsyes
einfoyes

Source

server/vueda/vdq/tasks.py:160

autoretry_for

default_retry_delay

max_retries

retry_jitter

timeout_hours

twilio

Source

server/vueda/vdq/tasks.py:149

Documents matching: server v3.0.0a1.post1client v3.0.0-alpha.2