Skip to content
Snippets Groups Projects

Issue #3357969: For web server dependent unattended updates run the entire life cycle in a separate process that will not be affected by hosting time limits

Merged Issue #3357969: For web server dependent unattended updates run the entire life cycle in a separate process that will not be affected by hosting time limits
Merged Ted Bowman requested to merge issue/automatic_updates-3357969:3357969-cron-drush into 3.0.x
5 files
+ 18
5
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 2
1
@@ -116,7 +116,8 @@ final class DrushUpdateStage extends UnattendedUpdateStageBase {
* @return bool
* Returns TRUE if any update was attempted, otherwise FALSE.
*/
protected function performUpdate(string $target_version, ?int $timeout): bool {
public function performUpdate(string $target_version, ?int $timeout): bool {
throw new \Exception("sopt here");
$project_info = new ProjectInfo('drupal');
$update_started = FALSE;
Loading