-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
4 additions
and
10 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
# SilverStripe Queued Jobs Module | ||
# Silverstripe Queued Jobs Module | ||
|
||
[![CI](https://github.com/symbiote/silverstripe-queuedjobs/actions/workflows/ci.yml/badge.svg)](https://github.com/symbiote/silverstripe-queuedjobs/actions/workflows/ci.yml) | ||
[![Scrutinizer](https://scrutinizer-ci.com/g/symbiote/silverstripe-queuedjobs/badges/quality-score.png)](https://scrutinizer-ci.com/g/symbiote/silverstripe-queuedjobs/) | ||
[![SilverStripe supported module](https://img.shields.io/badge/silverstripe-supported-0071C4.svg)](https://www.silverstripe.org/software/addons/silverstripe-commercially-supported-module-list/) | ||
[![Silverstripe supported module](https://img.shields.io/badge/silverstripe-supported-0071C4.svg)](https://www.silverstripe.org/software/addons/silverstripe-commercially-supported-module-list/) | ||
|
||
## Overview | ||
|
||
The Queued Jobs module provides a framework for SilverStripe developers to | ||
The Queued Jobs module provides a framework for Silverstripe developers to | ||
define long running processes that should be run as background tasks. | ||
This asynchronous processing allows users to continue using the system | ||
while long running tasks proceed when time permits. It also lets | ||
|
@@ -54,7 +53,6 @@ In order to enable this, configure the ProcessJobQueueTask to use this backend. | |
|
||
In your YML set the below: | ||
|
||
|
||
```yaml | ||
|
||
--- | ||
|
@@ -385,7 +383,6 @@ If defining your own jobs, please ensure you follow PSR conventions, i.e. use "Y | |
Ensure that notifications are configured so that you can get updates or stalled or broken jobs. You can | ||
set the notification email address in your config as below: | ||
|
||
|
||
```yaml | ||
SilverStripe\Control\Email\Email: | ||
queued_job_admin_email: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters