Implements \Drupal\Core\Form\FormInterface::submitForm().
Overrides SystemConfigFormBase::submitForm
public function submitForm(array &$form, array &$form_state) {
$this->configFactory
->get('system.cron')
->set('threshold.autorun', $form_state['values']['cron_safe_threshold'])
->save();
parent::submitForm($form, $form_state);
}