You are here

function hosting_update_6003 in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 hosting.install \hosting_update_6003()
  2. 7.3 hosting.install \hosting_update_6003()

Implements hook_update_N().

Lower the default amount of concurrent tasks.

File

./hosting.install, line 127
Install, update and uninstall for the hosting module.

Code

function hosting_update_6003() {
  $ret = array();
  variable_set('hosting_queue_tasks_items', 5);
  return $ret;
}