Closed (fixed)
Project:
Queue UI
Version:
3.1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Nov 2022 at 13:10 UTC
Updated:
16 Oct 2024 at 15:49 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
kevinn commentedUploaded patch.
Comment #3
kevinn commentedComment #4
volegerYour assumption regarding 0 is wrong. 0 sets the time limit to unlimited. See https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Component%21Util...
To remove the specific queue worker from the cron execution queue, you must remove the 'cron' key from the queue order definition info.
Check hook_queue_info_alter hook API to see how to alter specific queue worker definitions.
https://api.drupal.org/api/drupal/core!core.api.php/function/hook_queue_...
Comment #5
volegerHere you can see that Cron checks for
timevalue defined incron@QueueWorker parameter.See https://git.drupalcode.org/project/drupal/-/blame/11.x/core/lib/Drupal/C...
That means unsetting the defined
QueueWorkerparameter is impossible for now by using QueueUi functionality.I am changing this issue to a Feature request.
Comment #6
volegerAn issue was detected with definition overrides, so it is actually a bug.
Comment #9
volegerFixed in the 3.2.x branch
Comment #12
volegerFixed thanks