Notice: The foo bundle was deleted. As a result, the bar entity reference revisions field no longer specifies a specific target bundle

Created on 2 November 2021, over 3 years ago
Updated 16 August 2024, 8 months ago

Problem/Motivation

wodby@php.container:/var/www/lom $ drush cex
 [notice] The foo bundle (entity type: paragraph) was deleted. As a result, the bar entity reference revisions field (entity_type: node, bundle: rfq) no longer specifies a specific target bundle. The field will now accept any bundle and may need to be adjusted.
 [success] Configuration successfully exported to ../config/sday_lom_rf/sync.

But foo bundle is still exists. No problem appears. Only this notice.

EntityReferenceRevisionsItem.php:445, Drupal\entity_reference_revisions\Plugin\Field\FieldType\EntityReferenceRevisionsItem::onDependencyRemoval()
FieldConfigBase.php:263, Drupal\field\Entity\FieldConfig->onDependencyRemoval()
ConfigManager.php:466, Drupal\Core\Config\ConfigManager->callOnDependencyRemoval()
ConfigManager.php:329, Drupal\Core\Config\ConfigManager->getConfigEntitiesToChangeOnDependencyRemoval()
ConfigSplitManager.php:300, Drupal\config_split\ConfigSplitManager->splitPreview()
ConfigSplitManager.php:234, Drupal\config_split\ConfigSplitManager->exportTransform()
SplitImportExportSubscriber.php:82, Drupal\config_split\EventSubscriber\SplitImportExportSubscriber->exportDefaultPriority()
ContainerAwareEventDispatcher.php:142, call_user_func:{/var/www/lom/web/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php:142}()
ContainerAwareEventDispatcher.php:142, Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch()
ExportStorageManager.php:88, Drupal\Core\Config\ExportStorageManager->getStorage()
ManagedStorage.php:146, Drupal\Core\Config\ManagedStorage->getStorage()
ManagedStorage.php:134, Drupal\Core\Config\ManagedStorage->getCollectionName()
ConfigCommands.php:554, Drush\Drupal\Commands\config\ConfigCommands::copyConfig()
ConfigExportCommands.php:175, Drush\Drupal\Commands\config\ConfigExportCommands->doExport()
ConfigExportCommands.php:117, Drush\Drupal\Commands\config\ConfigExportCommands->export()
CommandProcessor.php:257, call_user_func_array:{/var/www/lom/vendor/consolidation/annotated-command/src/CommandProcessor.php:257}()
CommandProcessor.php:257, Consolidation\AnnotatedCommand\CommandProcessor->runCommandCallback()
CommandProcessor.php:212, Consolidation\AnnotatedCommand\CommandProcessor->validateRunAndAlter()
CommandProcessor.php:176, Consolidation\AnnotatedCommand\CommandProcessor->process()
AnnotatedCommand.php:313, Consolidation\AnnotatedCommand\AnnotatedCommand->execute()
Command.php:255, Consolidation\AnnotatedCommand\AnnotatedCommand->run()
Application.php:1027, Drush\Application->doRunCommand()
Application.php:273, Drush\Application->doRun()
Application.php:149, Drush\Application->run()
Runtime.php:118, Drush\Runtime\Runtime->doRun()
Runtime.php:48, Drush\Runtime\Runtime->run()
drush.php:72, eval()
1:3, eval()
drush:21, {main}()

Drupal core: 9.2.8-dev

πŸ› Bug report
Status

Fixed

Version

1.0

Component

Code

Created by

πŸ‡·πŸ‡ΈSerbia super_romeo Belgrade

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • Is there any solution here to avoid this ? I get this too.
    I have a multisite setup (2 sites), site one has a quiz content type and a field that references a quiz_answer paragraph.
    Since the site 2 doesnt have that content type and doesnt have the paragraph, i added this to full split.
    I do a
    drush @project1_alias si --existing-config -y
    than
    drush @project1_alias cex
    and i get this notice
    [notice] The Quiz answer bundle (entity type: paragraph) was deleted. As a result, the field_paragraphs entity reference revisions field (entity_type: node, bundle: quiz_question) no longer specifies a specific target bundle. The field will now accept any bundle and may need to be adjusted.
    When i login to the backend everything seems fine.

  • πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ

    Yep this message is occurring due to config split. The implementation in \Drupal\entity_reference_revisions\Plugin\Field\FieldType\EntityReferenceRevisionsItem::onDependencyRemoval() is incorrect. This method cannot log a message at this point because it has no idea if this will occur on not. The config system can do a dry to determine what entities will change when you remove one. Config split uses this to determine is config needs to be split.

    The fix here is to move the message to post save hook and set a flag in the onDependencyRemoval() method. Or something like that.

  • πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ

    Also in the most basic usage of the entity reference revisions this message is actually wrong.

    If you follow these steps:

    • install standard
    • Enable entity reference revisions
    • Create a node type called Test
    • Create an entity reference revisions field on Article and let it reference nodes of the type Test
    • Delete the node type test.

    Then view the log messages you will see 3x the message from \Drupal\entity_reference_revisions\Plugin\Field\FieldType\EntityReferenceRevisionsItem::onDependencyRemoval
    The Test bundle (entity type: node) was deleted. As a result, the field_err entity reference revisions field (entity_type: node, bundle: article) no longer specifies a specific target bundle. The field will now accept any bundle and may need to be adjusted.

    Then you will see the following message from the field module
    The field_err entity reference field (entity_type: node, bundle: article) no longer has any valid bundle it can reference. The field is not working correctly anymore and has to be adjusted.

    The last message is correct in this situation. My guess is that the message might be true for certain handlers but it is not true for the default handler provided by core. I think the correct thing to do here is to remove the message from entity_reference_revisions and if it is true with the handler from paragraphs then do something there because atm this message is wrong more often than it is correct. Note if you cancel deleting the content type Test during the delete you will still have 1x the message in the log because of the dry run.

  • Merge request !50Remove incorrect message β†’ (Merged) created by alexpott
  • Status changed to Needs review 9 months ago
  • πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ
  • Pipeline finished with Failed
    9 months ago
    Total: 151s
    #213995
  • πŸ‡¬πŸ‡§United Kingdom alexpott πŸ‡ͺπŸ‡ΊπŸŒ

    If we really want to add this message then we need to copy the field module and do something in hook_field_config_presave() or hook_field_config_update() but as detailed in #7 I'm not sure about this.

  • First commit to issue fork.
  • Pipeline finished with Skipped
    8 months ago
    #242146
  • Status changed to Fixed 8 months ago
  • πŸ‡¨πŸ‡­Switzerland berdir Switzerland

    This was initially copied from core, which moved it in #2925913: EntityReferenceItem logs critical errors in onDependencyRemoval() β†’ . field_field_config_presave() also acts on ERR field types, which I'm not sure is really desirable(it explicitly supports subclasses of EntityReferenceItem) but considering that, it seems fine to remove it.

    Also, \Drupal\Core\Entity\EntityDisplayBase::onDependencyRemoval() is a similarly flawed remaining case in core that still logs stuff in onDependencyRemoval().

    You're likely also getting this message on the manage permissions page of such a target bundle, see πŸ› Don't hide permissions local tasks on bundles when no permissions are defined Needs work (I may or may not be trying to lure @alexpott towards that issue)

    Merged.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024