events: add mode_verbose to transport, return string on send error

This commit is contained in:
Jens Langhammer
2021-01-12 21:48:39 +01:00
parent f30bdbecd6
commit 8369fa16ae
3 changed files with 20 additions and 3 deletions

View File

@ -67,7 +67,7 @@ def event_trigger_handler(event_uuid: str, trigger_name: str):
@CELERY_APP.task(
bind=True,
autoretry_for=(NotificationTransportError),
autoretry_for=(NotificationTransportError,),
retry_backoff=True,
base=MonitoredTask,
)