sources/plex: use exception_to_string in tasks

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-11-05 01:16:36 +01:00
parent 3005ca17bd
commit 7798292aa8
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ from requests import RequestException
from authentik.events.models import Event, EventAction
from authentik.events.monitored_tasks import MonitoredTask, TaskResult, TaskResultStatus
from authentik.lib.utils.errors import exception_to_string
from authentik.root.celery import CELERY_APP
from authentik.sources.plex.models import PlexSource
from authentik.sources.plex.plex import PlexAuth
@ -31,7 +32,7 @@ def check_plex_token(self: MonitoredTask, source_slug: int):
self.set_status(
TaskResult(
TaskResultStatus.ERROR,
["Plex token is invalid/an error occurred:", str(exc)],
["Plex token is invalid/an error occurred:", exception_to_string(exc)],
)
)
Event.new(