barryvdh / laravel-async-queue

Laravel Async Queue Driver
287 stars 76 forks source link

Queue is not executing #32

Open sriraman opened 9 years ago

sriraman commented 9 years ago

Queue pushes are working without any issue. But, If i try to run queue:work daemon, It is throwing an error

production.ERROR: exception 'InvalidArgumentException' with message 'No connector for []' in QueueManager.php:129

All queues are listed in queue table. But, It is not executing.

barryvdh commented 9 years ago

You don't have to do that. It should run by itself.

anedisi commented 9 years ago

what is the reason behind not allowing for the queue listener from cli ? another app has a connection to db and i want to write the queues directly to db table. because of that i need to be able to run the queues from cli. it is trivial to enable it and im just asking why did you chose not to ?

if somebody searches for something similar then try with "davelip/laravel-database-queue"