JMSJobQueueBundle
JMSJobQueueBundle copied to clipboard
Run and Schedule Symfony Console Commands as Background Jobs
I believe currently it is not possible to use this bundle with Symfony 5. Will this bundle have support for it ?
Hello, not sure, if @schmittjoh reads this, but I wanted to say thank you for this bundle! It served us well for the last five years and processed 5,951,389 jobs...
The bundle extension triggers a deprecation warning when configuring the "jms_job_safe_object" doctrine type. ```php public function prepend(ContainerBuilder $container) { $container->prependExtensionConfig('doctrine', array( 'dbal' => array( 'types' => array( 'jms_job_safe_object' => array(...
I get a: Fatal error: Uncaught exception 'Doctrine\ORM\ORMException' with message 'Unknown Entity namespace alias 'JMSJobQueueBundle'.' On every console command I do. Edit: Only getting this when using the console Application...
Fix deprecation notices - Remove ContainerAwareCommand dependency - Update interface and dispatch calls to event manager (deprecated interface used) - Update references to deprecated @Route annotation - Update references to...
This fixes https://github.com/schmittjoh/JMSJobQueueBundle/issues/249 It overlaps with a fix in this pull request https://github.com/schmittjoh/JMSJobQueueBundle/pull/250 In the project I'm using it for, the same problem occurred when using the web interface so...
If the `RunCommand` crashes after locking a job but before starting it the job is stuck being locked and won't be picked up again, even by the same worker. While...
Fix A tree builder without a root node is deprecated since Symfony 4.2 and will not be supported anymore in 5.0. --
``` Attempted to load class "Twig_Extension" from the global namespace. Did you forget a "use" statement? ``` Fails with Twig 2.* As hotfix you can create empty class and register...
Without the changes, couldn't be used in Synfony 4