diff --git a/source/docs/v3/queues.blade.md b/source/docs/v3/queues.blade.md index 33efb2a..60b124b 100644 --- a/source/docs/v3/queues.blade.md +++ b/source/docs/v3/queues.blade.md @@ -26,6 +26,8 @@ To force the database queue driver to use the central connection, open your `que Make sure the connection used by the queue is not in `tenancy.redis.prefixed_connections`. +>If you are making use of a different `REDIS_CLIENT ` other than `phpredis` (which is the default on most Laravel apps), you may run into an error indicating that Laravel `tried to set a connection on null` in the RedisManager class. Defaulting back to `phpredis` as the `REDIS_CLIENT` should fix this issue. + ## Central queues {#central-queues} Jobs dispatched from the central context will remain central. However, it's recommended not to mix queue **connections** for central & tenant jobs due to potential leftover global state, e.g. central jobs thinking they're in the previous tenant's context. @@ -47,4 +49,4 @@ And use this connection like this: ```jsx dispatch(new SomeJob(...))->onConnection('central'); -``` \ No newline at end of file +```