Skip to content

Commit

Permalink
MNT Fix yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dnsl48 committed Nov 5, 2020
1 parent 465fc08 commit a9763da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _config/queuedjobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ SilverStripe\Core\Injector\Injector:

Symbiote\QueuedJobs\Services\QueuedJobService:
properties:
queueHandler: %$QueueHandler
queueHandler: '%$QueueHandler'
# Change to %$DoormanRunner for async processing (requires *nix)
queueRunner: %$Symbiote\QueuedJobs\Tasks\Engines\QueueRunner
queueRunner: '%$Symbiote\QueuedJobs\Tasks\Engines\QueueRunner'

DefaultRule:
class: 'AsyncPHP\Doorman\Rule\InMemoryRule'
Expand All @@ -37,11 +37,11 @@ Only:
SilverStripe\Core\Injector\Injector:
Symbiote\QueuedJobs\Services\GearmanQueueHandler:
properties:
gearmanService: %$GearmanService
gearmanService: '%$GearmanService'

Symbiote\QueuedJobs\Workers\JobWorker:
properties:
queuedJobService: %$Symbiote\QueuedJobs\Services\QueuedJobService
queuedJobService: '%$Symbiote\QueuedJobs\Services\QueuedJobService'

QueueHandler:
class: GearmanQueueHandler

0 comments on commit a9763da

Please sign in to comment.