wsantell β created an issue.
I believe this issue is fixed in the 2.x branch. I had upgraded to 2.0.0 and when this patch applied it caused some issues I erroneously reported in issue 3460855.
This is an invalid issue that stems from changing to the 2.x branch and applying a patch from issue 2949963 which added this code:
elseif ($entity && ($entity instanceof ContentEntityInterface) && !$entity->isNew()) {
$entity_url = base_path() . $entity->toUrl('canonical', ['absolute' => TRUE])->getInternalPath();
$system_config = \Drupal::configFactory()->get('system.site');
if ($system_config->get('page.front') === $entity_url) {
$metatags = $this->metatagDefaults->load('front');
}
elseif ($system_config->get('page.403') === $entity_url) {
$metatags = $this->metatagDefaults->load('403');
}
elseif ($system_config->get('page.404') === $entity_url) {
$metatags = $this->metatagDefaults->load('403');
}
}
wsantell β created an issue.
I have modified Mohd's patch to work with 4.0.0-alpha4
The patch for #81 fails due to Color being removed from Core β . The attached patch is a rewrite of #81 with the color.module patch removed.
To address the OP, this appears to be an issue with google/protobuf in cloud environments. This is the corresponding issue on their github: https://github.com/protocolbuffers/protobuf/issues/11203