Hi,
Is it possible to run individual cron jobs via Drush? e.g. I have a cron job named "mycron". In the Esysia UI I can run that 1 job by clicking [run].
In drush, I can use the command "drush elysia-cron" but that will run all active cron jobs.
My Question: how can I run mycron (only) via drush?
Request: Make all cron jobs available in drush so "drush elysia-cron mycron" would work.
Thanks in advance
Comments
Comment #1
gotheric commentedIf you use the 2.x DEV version for D7 this is possibile with command:
drush elysia-cron run [JOB_NAME]
or:
drush elysia-cron run [JOB_NAME] --ignore-time
(use --ignore-time to force execution)
This will be ported in stable version soon (now it needs a bit more testing).