Fixes #19806: Introduce JobFailed exception to allow marking background jobs as failed (#19807)

This commit is contained in:
Jeremy Stretch
2025-07-02 15:02:49 -04:00
committed by GitHub
parent ea4c205a37
commit 3b8841ee3b
6 changed files with 38 additions and 11 deletions

View File

@@ -2,9 +2,9 @@
NetBox includes the ability to execute certain functions as background tasks. These include:
* [Report](../customization/reports.md) execution
* [Custom script](../customization/custom-scripts.md) execution
* Synchronization of [remote data sources](../integrations/synchronized-data.md)
* Housekeeping tasks
Additionally, NetBox plugins can enqueue their own background tasks. This is accomplished using the [Job model](../models/core/job.md). Background tasks are executed by the `rqworker` process(es).