grimgit
grimgit
Hi @Guikingone , I'm using Doctrine for transport and store, so i would to consume multiple tasks calling multiple scheduler:consume at the same time but the first process locks all...
Suppose to have a very long task, for example 1 hour task, all the others tasks are locked and will be delayed of 1 hour, even if i'm running multiple...
It's correct, process `A` should lock only the first available task before start to consume it so the process `B` can acquire the lock of another task. Suppose to have...
Hi, the current code use the form submit() function, so the submit input is not submitted and $form->get('submit')->isCliccked() is always false. The PR try to resolve the issue calling form.querySelector('[type="submit"]').click()...