function hosting_update_6003 in Hosting 7.3
Same name and namespace in other branches
- 6.2 hosting.install \hosting_update_6003()
- 7.4 hosting.install \hosting_update_6003()
Implements hook_update_N().
Lower the default amount of concurrent tasks.
File
- ./
hosting.install, line 150 - Define database schemas and update functions for the hosting module.
Code
function hosting_update_6003() {
$ret = array();
variable_set('hosting_queue_tasks_items', 5);
return $ret;
}