Problem/Motivation
During the migration of a Drupal 7 website, this error arises.
Steps to reproduce
drush migrate-import --tag="Drupal 7"
[error] The "auto_entitylabel_entity_update_action" plugin does not exist. Valid plugin IDs for Drupal\Core\Action\ActionManager are: comment_unpublish_by_keyword_action, feeds_feed_delete_action, node_assign_owner_action, node_unpromote_action, node_promote_action, node_make_sticky_action, node_unpublish_by_keyword_action, node_make_unsticky_action, user_add_role_action, user_block_user_action, user_cancel_user_action, user_remove_role_action, user_unblock_user_action, vbo_cancel_user_action, views_bulk_operations_delete_entity, pathauto_update_alias, entity:delete_action:comment, entity:delete_action:node, action_send_email_action, action_goto_action, action_message_action, entity:publish_action:block_content, entity:publish_action:comment, entity:publish_action:menu_link_content, entity:publish_action:node, entity:publish_action:path_alias, entity:publish_action:taxonomy_term, entity:publish_action:paragraph, entity:save_action:block_content, entity:save_action:comment, entity:save_action:feeds_feed, entity:save_action:file, entity:save_action:menu_link_content, entity:save_action:node, entity:save_action:taxonomy_term, entity:save_action:user, entity:unpublish_action:block_content, entity:unpublish_action:comment, entity:unpublish_action:menu_link_content, entity:unpublish_action:node, entity:unpublish_action:path_alias, entity:unpublish_action:taxonomy_term, entity:unpublish_action:paragraph
I have installed the new Drupal 8 version of the module, but nothing changes.
Comments
Comment #2
joelpittetI ran into this as well. Ended up cherry picking the migrations I wanted to run instead of running them all.
Also for fun I just stubbed out the missing action plugin to my custom Migration module. This will work because all it cares about is that the plugin id exists.