Merge pull request #3256 from acs-ferreira/patch-6

Fix path for Drivers
This commit is contained in:
Daniel Kesselberg 2018-08-19 15:48:41 +02:00 committed by GitHub
commit 978a9d04e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,7 +70,7 @@ To enable this driver you need to add following block to your local configuratio
// ...
'queue' => [
'class' => 'humhub\components\queue\driver\MySQL',
'class' => 'humhub\modules\queue\driver\MySQL',
],
// ...
@ -91,7 +91,7 @@ To enable this driver you need to add following block to your local configuratio
// ...
'queue' => [
'class' => 'humhub\components\queue\driver\Redis',
'class' => 'humhub\modules\queue\driver\Redis',
],
// ...
@ -102,6 +102,4 @@ To enable this driver you need to add following block to your local configuratio
### Sync and Instant Queue
The [[humhub\components\queue\driver\Sync]] and [[humhub\components\queue\driver\Instant]] queues are used in test and development environments
without cron jobs.
The [[humhub\components\queue\driver\Sync]] and [[humhub\components\queue\driver\Instant]] queues are used in test and development environments without cron jobs.