Properly pass the name of the exception
This commit is contained in:
parent
73a4795967
commit
dd6a38d5ea
|
@ -45,7 +45,7 @@ def fail(celery, msg, exception=None, current=1, total=1):
|
||||||
if exception is None:
|
if exception is None:
|
||||||
exception = TaskFailure
|
exception = TaskFailure
|
||||||
|
|
||||||
msg = f"{exception}: {msg}"
|
msg = f"{type(exception()).__name__}: {msg}"
|
||||||
|
|
||||||
logger = getLogger(__name__)
|
logger = getLogger(__name__)
|
||||||
logger.error(msg)
|
logger.error(msg)
|
||||||
|
|
Loading…
Reference in New Issue