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.
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: