function system_update_8009

Move cron system settings from variable to config.

Related topics

File

drupal/core/modules/system/system.install, line 1351
Install, update and uninstall functions for the system module.

Code

function system_update_8009() {
  update_variables_to_config('system.cron', array(
    'cron_safe_threshold' => 'threshold.autorun',
    'cron_threshold_warning' => 'threshold.requirements_warning',
    'cron_threshold_error' => 'threshold.requirements_error',
  ));
}