Hi
Not sure if this is "by design", but I found this confusing.
I have a mix of regular cron (hook_cron) and cron queue (hook_cron_queue_info) jobs. (In the UC jobs list, the regular ones show a title of "Default Cron Handler" (unless they are core jobs that you changed the name for in ultimate_cron.cron_inc), and the cron queue ones show a title like "Queue: {queue name}").
All jobs use the Default (Crontab) scheduler, and I'm using poorman's cron, interval 1 minute (I turned off my wget cron generator).
The default rule for the Crontab scheduler is * */6+@ * * * (as configured at admin/config/system/cron/scheduler/crontab)
When I edit a non-overridden regular cron job, such as Feeds Cron (at admin/config/system/cron/jobs/list/feeds_cron/edit), I see on the right side of the edit form, in the Crontab frameset, under the rules box, it says: Semi-colon separated list of crontab rules. (Blank = * */6+@ * * *).
When I edit a non-overridden cron queue job, such as Queue: feeds_push_unsubscribe, the text in the editor window says: Semi-colon separated list of crontab rules. (Blank = * * * * *).
I am able to override the rule for the cron queue job (to something like */10+@ * * * *) and get the queue to be processed every 10 minutes instead of every one minute.
So my question is, why is the crontab default rules schedule not being used for cron queue jobs? Only for regular cron jobs?
This can be similarly be seen in the UC jobs tab in the Scheduled column. It jumps between * * * * * and * */6+@ * * * depending on the nature of the cron job.
Is this a bug? Or serving some purpose?
Thanks for your info