mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
20 lines
612 B
Python
20 lines
612 B
Python
from rest_framework import status
|
|
from rest_framework.exceptions import APIException
|
|
|
|
|
|
class AbortTransaction(Exception):
|
|
"""
|
|
A dummy exception used to trigger a database transaction rollback.
|
|
"""
|
|
pass
|
|
|
|
|
|
class RQWorkerNotRunningException(APIException):
|
|
"""
|
|
Indicates the temporary inability to enqueue a new task (e.g. custom script execution) because no RQ worker
|
|
processes are currently running.
|
|
"""
|
|
status_code = status.HTTP_503_SERVICE_UNAVAILABLE
|
|
default_detail = 'Unable to process request: RQ worker process not running.'
|
|
default_code = 'rq_worker_not_running'
|