Reputation: 1
We are using latest Vapor and latest Laravel version and we use Bus::chain([...]) method in order to run some asynchronous jobs in order.
For example, we have this use case, where these jobs must be processed in order to work correctly.
We do have multiple workers on this specific queue and jobs do not run in order like it states in the docs. Some last job might start before first and second job is not finished.
Has anyone encountered this issue and maybe do you have recommendations how this should be fixed?
I expect Bus::chain to work in order.
Upvotes: 0
Views: 99