only in patch2: unchanged: --- a/modules/cloud_service_providers/aws_cloud/aws_cloud.install +++ b/modules/cloud_service_providers/aws_cloud/aws_cloud.install @@ -1803,12 +1803,16 @@ function aws_cloud_update_8199() { $ec2_service = \Drupal::service('aws_cloud.ec2'); $config_entities = \Drupal::service('plugin.manager.cloud_config_plugin')->loadConfigEntities('aws_ec2'); foreach ($config_entities as $config_entity) { - $ec2_service->setCloudContext($config_entity->getCloudContext()); - - $ec2_service->updateInstancesWithoutBatch(); - $ec2_service->updateVpcsWithoutBatch(); - $ec2_service->updateSubnetsWithoutBatch(); - $ec2_service->updateCloudServerTemplatesWithoutBatch(); + try { + $ec2_service->setCloudContext($config_entity->getCloudContext()); + $ec2_service->updateInstancesWithoutBatch(); + $ec2_service->updateVpcsWithoutBatch(); + $ec2_service->updateSubnetsWithoutBatch(); + $ec2_service->updateCloudServerTemplatesWithoutBatch(); + } + catch (\Exception $e) { + continue; + } } }