79752241

Date: 2025-09-01 07:21:30
Score: 1
Natty:
Report link
 app('queue')->connection('redis');

Add this in your AppServiceProvider

public function boot(): void
    {
        // Force Redis queue connection resolution early to avoid
        // 'Call to undefined method Illuminate\Queue\RedisQueue::readyNow()' error in Horizon,
        // especially in multi-tenant context.
        app('queue')->connection('redis');
        // your existing codes.......
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31394163