Denis Mysenko

Results 72 comments of Denis Mysenko

@xoco70 this package has to be installed in the worker app (or in both). just make sure your other app is creating/enqueueing jobs and that these jobs land in SQS...

@aromka I put it all in the CI build scripts - it will choose where to deploy depending on branch. For Laravel I had to make some extra conditions in...

Just add a sqs-plain2 driver in the config?

Of course you can - it's up to you :) You can save whatever you want in the SQS, as long as it fits in the maximum message size. You...

Oh I see what you mean. Why don't you create some kind of intermediary class that fetches the payload, sees what's inside and then decides to which Job class to...

Hmm, have you actually tried this after patch? The reason I added this block - jobs would never get deleted at all so I had to do it manually.

Manually? But successful jobs should get deleted automatically?

You could either create one more connection in config/queue.php using the same driver (sqs-plain) or use Laravel's onQueue() method when you dispatch a job - this will override the queue...

Thanks for finding and pointing this out! Since 5.3 is coming out soon as well, I will need to add some version checks in the Laravel/Lumen service provider it seems...