cron-bundle icon indicating copy to clipboard operation
cron-bundle copied to clipboard

This bundle provides a simple interface for registering repeated scheduled tasks within your application.

Results 15 cron-bundle issues
Sort by recently updated
recently updated
newest added

When we running this with multiple instances even though we set maximum instances to > 1 number it always run in single instance. its because `if ($job->getNextRun() > $now) `...

Hi, doesn't it make more sense to update a single job when it finishes and not after all jobs have been finished? When there is a longer running job, other...

psr clock is immutable: https://github.com/php-fig/clock/blob/master/src/ClockInterface.php#L12 ``` Error thrown while running command "shapecode:cron:run". Message: "Could not convert PHP value of type Symfony\Component\Clock\DatePoint to type Doctrine\DBAL\Types\DateTimeType. Expected one of the following types:...

My observation is that I have jobs which have running_instances > 0 and, because of this, are then skipped and never executed again. Some of my jobs take up to...

Hi, I had a problem in Symfony 5.3 with the shapecode:cron:scan command because it couldn't find any CronJob. I got deeper and I found that the problem was here: https://github.com/shapecode/cron-bundle/blob/master/src/EventListener/AnnotationJobLoaderListener.php#L40...

Hi, we have problems with running more jobs than 60. We run cronshape each minute via system cron. In your code, there is 1s sleep in cycle in CronRunCommand, so...

Hello, Il have some problems with long tasks, they exceeds 60 seconds and then the "running_instances "stay at 1 so the next instances are not executed. I see a pull...

I was wondering why `CronjobResultRepository::findMostRecent` was removed in 0e271400. I found this repository method very helpful when displaying the state of the cronjobs in the browser.

Me again! If I remove a cronjob and run `php bin/console shapecode:cron:scan` , I get a database error > SQLSTATE[23000]: Integrity constraint violation: 1451 Cannot delete or update a parent...

Symfony 6.4.12 since today i have a error message when running **shapecode:cron:scan**: ``` In InvalidType.php line 51: Could not convert PHP value of type Symfony\Component\Clock\DatePoint to type Doctrine\DBAL\Types\DateTimeType. Expected one...