laravel / lumen-framework

The Laravel Lumen Framework.
https://lumen.laravel.com
MIT License
1.48k stars 416 forks source link

"Unique Jobs" not working in lumen #1200

Closed AkshayGadekar closed 3 years ago

AkshayGadekar commented 3 years ago

Description:

I am using rabbitmq for queue jobs in lumen. There are some jobs which I want to run synchronously on server, laravel provides "Unique Jobs" for it where you have to implement ShouldBeUnique interface on job class, but in lumen its not working. I did this: class CampaignProcess extends Job implements ShouldBeUnique But this actually only allowed to run first job having particular uniqueId but not others.

Steps To Reproduce:

driesvints commented 3 years ago

Use Laravel if you need this.