| 12345678910111213141516171819 |
- 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'
|