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

Schedule Cron jobs (commands/callbacks/bash scripts) within your Symfony application.

Results 14 schedule-bundle issues
Sort by recently updated
recently updated
newest added

After tasks are run a `Result` is created, but some result data is formatted or discarded. For example if a `Process` fails: ```php return Result::failure( $task, "Exit {$process->getExitCode()}: {$process->getExitCodeText()}", $process->getOutput().$process->getErrorOutput()...

Are you open to a possibility to configure tasks (only the types that accept string arguments) using a database. I'm aware this can be created in my app, but having...

Ability to add tasks to a "trigger group" like `deploy`: ```php class AppScheduleBuilder implements ScheduleBuilder { public function buildSchedule(Schedule $schedule): void { $schedule->addCommand('app:warm-cache') ->trigger('deploy') ->unscheduled() // disables task from bring...

enhancement

Throw exception if any tasks are scheduled at the same time. Should help with workaround (2) in #6.

enhancement

I have a command scheduled to run every minute, when I type `php bin/console schedule:list --detail` I can see next run in 1 mn. But it doesn't run autimarically until...

See https://github.com/zenstruck/schedule-bundle/issues/39#issuecomment-790636785

This is going to sound totally whack, but I have intermittent issues with certain command runs failing. It only happens when the stars align, and multiple tasks run under the...

- arguments: - `--limit=x` exit after running x tasks - `--memory-limit=x` exit after x memory reached - `--time-limit=x` exit after x tasks are run - add `schedule:stop-daemon` or `schedule:daemon --stop`...

enhancement
help wanted

I have found when multiple [`CommandTask`](https://github.com/kbond/schedule-bundle/blob/master/doc/define-tasks.md#commandtask)'s are due at the same time it can hit your PHP memory limit. I'm not sure what the best way to combat this is....

help wanted