Loading core/modules/system/system.post_update.php +6 −1 Original line number Diff line number Diff line Loading @@ -223,8 +223,13 @@ function system_post_update_sort_all_config(&$sandbox) { $start = $sandbox['progress']; $end = min($sandbox['max'], $start + $iteration_size); for ($i = $start; $i < $end; $i++) { try { $factory->getEditable($sandbox['all_config_names'][$i])->save(); } catch (\Exception $e) { watchdog_exception('system', $e); } } if ($sandbox['max'] > 0 && $end < $sandbox['max']) { $sandbox['progress'] = $end; Loading Loading
core/modules/system/system.post_update.php +6 −1 Original line number Diff line number Diff line Loading @@ -223,8 +223,13 @@ function system_post_update_sort_all_config(&$sandbox) { $start = $sandbox['progress']; $end = min($sandbox['max'], $start + $iteration_size); for ($i = $start; $i < $end; $i++) { try { $factory->getEditable($sandbox['all_config_names'][$i])->save(); } catch (\Exception $e) { watchdog_exception('system', $e); } } if ($sandbox['max'] > 0 && $end < $sandbox['max']) { $sandbox['progress'] = $end; Loading