function hosting_update_6003 in Hostmaster (Aegir) 6
Implements hook_update_N().
Lower the default amount of concurrent tasks.
File
- modules/
hosting/ hosting.install, line 124 - Install, update and uninstall for the hosting module.
Code
function hosting_update_6003() {
$ret = array();
variable_set('hosting_queue_tasks_items', 5);
return $ret;
}