mirror of https://github.com/peter4431/rq.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
465 B
Python
13 lines
465 B
Python
import traceback
|
|
|
|
from .connections import get_current_connection
|
|
from .queue import get_failed_queue
|
|
from .worker import Worker
|
|
|
|
|
|
def move_to_failed_queue(job, *exc_info):
|
|
"""Default exception handler: move the job to the failed queue."""
|
|
exc_string = Worker._get_safe_exception_string(traceback.format_exception(*exc_info))
|
|
failed_queue = get_failed_queue(get_current_connection(), job.__class__)
|
|
failed_queue.quarantine(job, exc_info=exc_string)
|