Issue #3255320: ReadinessCheckEvent should have CronUpdater instance if cron updates are enabled
Merge request reports
Activity
marked this merge request as draft from issue/automatic_updates-3255320@b99a1ee7
marked this merge request as draft from issue/automatic_updates-3255320@4db80c07
- Resolved by Adam G-H
- Resolved by Adam G-H
- Resolved by Adam G-H
187 // Re-running the readiness checks now should mean that when we display 188 // cached errors in automatic_updates_page_top(), we'll see errors that 189 // were raised during this run, instead of any previously cached results. 190 $errors = $this->readinessValidationManager->run() 191 ->getResults(SystemManager::REQUIREMENT_ERROR); 192 193 if (empty($errors)) { 189 $results = $this->getReadinessErrors($recommended_release->getVersion()); 190 if (empty($results)) { 194 191 $form['actions'] = $this->actions($form_state); 195 192 } 193 else { 194 $this->messenger()->addError($this->getFailureMessageForSeverity(SystemManager::REQUIREMENT_ERROR)); 195 foreach ($results as $result) { 196 $messages = $result->getMessages(); 197 $message = count($messages) === 1 ? $messages[0] : $result->getSummary(); - Resolved by Adam G-H
- Resolved by Ted Bowman
- Resolved by Adam G-H
Please register or sign in to reply