function hosting_tasks_queue in Hosting 5
Same name and namespace in other branches
- 6.2 task/hosting_task.module \hosting_tasks_queue()
- 7.4 task/hosting_task.module \hosting_tasks_queue()
- 7.3 task/hosting_task.module \hosting_tasks_queue()
Process the hosting task queue.
Iterates through the list of outstanding tasks, and execute the commands on the back end.
File
- ./
hosting.queues.inc, line 170
Code
function hosting_tasks_queue($count = 20) {
global $provision_errors;
drush_log(dt("Running tasks queue"));
$tasks = _hosting_get_new_tasks($count);
foreach ($tasks as $task) {
drush_backend_fork("hosting task", array(
$task->nid,
));
}
}