From 7c354690673f4e7a618af95c2858371a16f522b4 Mon Sep 17 00:00:00 2001 From: Chris Green Date: Wed, 11 Sep 2024 14:52:26 -0700 Subject: [PATCH] Close #3683 use migmag_lookup instead of migrate_lookup (#3684) Co-authored-by: Joe Parsons <471936+joeparsons@users.noreply.github.com> --- modules/custom/az_migration/README.md | 2 +- .../custom/az_migration/az_migration.info.yml | 1 + modules/custom/az_migration/az_migration.install | 7 +++++++ .../az_block_content_flexible_block.yml | 4 ++-- .../az_migration/migrations/az_cas_user.yml | 2 +- .../migrations/az_event_categories.yml | 6 +++--- .../migrations/az_exclude_node_title.yml | 2 +- .../custom/az_migration/migrations/az_files.yml | 2 +- .../migrations/az_flexible_page_categories.yml | 6 +++--- .../custom/az_migration/migrations/az_media.yml | 6 +++--- .../az_migration/migrations/az_news_tags.yml | 6 +++--- .../az_migration/migrations/az_node_carousel.yml | 4 ++-- .../az_migration/migrations/az_node_event.yml | 12 ++++++------ .../migrations/az_node_flexible_page.yml | 10 +++++----- .../az_migration/migrations/az_node_news.yml | 16 ++++++++-------- .../az_migration/migrations/az_node_person.yml | 8 ++++---- .../az_node_uaqs_basic_page_to_az_page.yml | 6 +++--- .../migrations/az_paragraph_card_deck.yml | 2 +- .../migrations/az_paragraph_carousel.yml | 2 +- .../migrations/az_paragraph_column_image.yml | 2 +- .../migrations/az_paragraph_content_marquee.yml | 2 +- .../migrations/az_paragraph_file_download.yml | 4 ++-- .../az_paragraph_full_width_media_row.yml | 2 +- .../migrations/az_paragraph_gallery.yml | 2 +- .../migrations/az_person_categories.yml | 6 +++--- .../az_person_categories_secondary.yml | 8 ++++---- .../az_migration/migrations/az_redirects.yml | 2 +- .../custom/az_migration/migrations/az_user.yml | 2 +- .../migrate/process/MigratedPathLookup.php | 8 ++++---- .../process/ParagraphsColumnImageFieldMerge.php | 4 ++-- .../process/ParagraphsFileDownloadFieldMerge.php | 4 ++-- 31 files changed, 79 insertions(+), 71 deletions(-) diff --git a/modules/custom/az_migration/README.md b/modules/custom/az_migration/README.md index 732b57321f..ae6a9955c2 100644 --- a/modules/custom/az_migration/README.md +++ b/modules/custom/az_migration/README.md @@ -514,7 +514,7 @@ drush mr az_menu_links ``` ## Exclude Node Title Migration -This migration uses migration_lookup to match source node id to the nid of +This migration uses migmag_lookup to match source node id to the nid of migrated content. Optional Migration Dependencies: diff --git a/modules/custom/az_migration/az_migration.info.yml b/modules/custom/az_migration/az_migration.info.yml index f766d34339..208a05f04d 100644 --- a/modules/custom/az_migration/az_migration.info.yml +++ b/modules/custom/az_migration/az_migration.info.yml @@ -6,6 +6,7 @@ package: 'The University of Arizona - Experimental' lifecycle: experimental lifecycle_link: 'https://github.com/az-digital/az_quickstart/blob/main/RELEASES.md#experimental-features' dependencies: + - drupal:migmag_process - drupal:migrate - drupal:migrate_plus - drupal:migrate_tools diff --git a/modules/custom/az_migration/az_migration.install b/modules/custom/az_migration/az_migration.install index 5aaf295517..6db252cda4 100644 --- a/modules/custom/az_migration/az_migration.install +++ b/modules/custom/az_migration/az_migration.install @@ -12,3 +12,10 @@ function az_migration_update_last_removed() { // Remove updates added before 2.6.0. return 920301; } + +/** + * Ensure the migmag_process module is installed. + */ +function az_migration_update_1021001() { + \Drupal::service('module_installer')->install(['migmag_process']); +} diff --git a/modules/custom/az_migration/migrations/az_block_content_flexible_block.yml b/modules/custom/az_migration/migrations/az_block_content_flexible_block.yml index be4257e79c..525bd8a924 100644 --- a/modules/custom/az_migration/migrations/az_block_content_flexible_block.yml +++ b/modules/custom/az_migration/migrations/az_block_content_flexible_block.yml @@ -42,7 +42,7 @@ destination: process: uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: node_uid @@ -61,7 +61,7 @@ process: process: value: - - plugin: migration_lookup + plugin: migmag_lookup source: value migration: - az_paragraph_callout diff --git a/modules/custom/az_migration/migrations/az_cas_user.yml b/modules/custom/az_migration/migrations/az_cas_user.yml index d7b9aeab46..7a7e8b02e0 100644 --- a/modules/custom/az_migration/migrations/az_cas_user.yml +++ b/modules/custom/az_migration/migrations/az_cas_user.yml @@ -13,7 +13,7 @@ source: process: uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user source: uid - diff --git a/modules/custom/az_migration/migrations/az_event_categories.yml b/modules/custom/az_migration/migrations/az_event_categories.yml index b6a583c085..41b7a36bba 100644 --- a/modules/custom/az_migration/migrations/az_event_categories.yml +++ b/modules/custom/az_migration/migrations/az_event_categories.yml @@ -17,7 +17,7 @@ process: vid: plugin: default_value default_value: az_event_categories - + name: name weight: weight @@ -31,9 +31,9 @@ process: method: process source: parent - - plugin: migration_lookup + plugin: migmag_lookup migration: az_event_categories - + parent: plugin: default_value default_value: 0 diff --git a/modules/custom/az_migration/migrations/az_exclude_node_title.yml b/modules/custom/az_migration/migrations/az_exclude_node_title.yml index ac3edc1725..b07c261c49 100644 --- a/modules/custom/az_migration/migrations/az_exclude_node_title.yml +++ b/modules/custom/az_migration/migrations/az_exclude_node_title.yml @@ -20,7 +20,7 @@ process: - plugin: multiple_values - - plugin: migration_lookup + plugin: migmag_lookup migration: - az_node_carousel - az_node_event diff --git a/modules/custom/az_migration/migrations/az_files.yml b/modules/custom/az_migration/migrations/az_files.yml index 4b6ec7a671..688ea3ca4f 100644 --- a/modules/custom/az_migration/migrations/az_files.yml +++ b/modules/custom/az_migration/migrations/az_files.yml @@ -39,7 +39,7 @@ process: uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: uid diff --git a/modules/custom/az_migration/migrations/az_flexible_page_categories.yml b/modules/custom/az_migration/migrations/az_flexible_page_categories.yml index c6c1977eee..ab96e53e07 100644 --- a/modules/custom/az_migration/migrations/az_flexible_page_categories.yml +++ b/modules/custom/az_migration/migrations/az_flexible_page_categories.yml @@ -17,7 +17,7 @@ process: vid: plugin: default_value default_value: az_page_categories - + name: name weight: weight @@ -31,9 +31,9 @@ process: method: process source: parent - - plugin: migration_lookup + plugin: migmag_lookup migration: az_flexible_page_categories - + parent: plugin: default_value default_value: 0 diff --git a/modules/custom/az_migration/migrations/az_media.yml b/modules/custom/az_migration/migrations/az_media.yml index eca61ed1d7..ccd9473b31 100644 --- a/modules/custom/az_migration/migrations/az_media.yml +++ b/modules/custom/az_migration/migrations/az_media.yml @@ -11,7 +11,7 @@ source: process: uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: uid @@ -39,7 +39,7 @@ process: # The mfid field is temporary, and is not present in the source. # Lookup fid through migration lookup. Should not depend on fid not changing. mfid: - plugin: migration_lookup + plugin: migmag_lookup migration: az_files source: fid # Bundles have different field names for their target reference. @@ -60,7 +60,7 @@ process: method: process value: 'video/oembed' not_equals: true - - plugin: migration_lookup + - plugin: migmag_lookup source: field_uaqs_photo/0/fid migration: - az_files diff --git a/modules/custom/az_migration/migrations/az_news_tags.yml b/modules/custom/az_migration/migrations/az_news_tags.yml index eda6408321..b5113dc818 100644 --- a/modules/custom/az_migration/migrations/az_news_tags.yml +++ b/modules/custom/az_migration/migrations/az_news_tags.yml @@ -17,7 +17,7 @@ process: vid: plugin: default_value default_value: az_news_tags - + name: name weight: weight @@ -31,9 +31,9 @@ process: method: process source: parent - - plugin: migration_lookup + plugin: migmag_lookup migration: az_news_tags - + parent: plugin: default_value default_value: 0 diff --git a/modules/custom/az_migration/migrations/az_node_carousel.yml b/modules/custom/az_migration/migrations/az_node_carousel.yml index 0b0fcd5654..0c551ec8ec 100644 --- a/modules/custom/az_migration/migrations/az_node_carousel.yml +++ b/modules/custom/az_migration/migrations/az_node_carousel.yml @@ -72,14 +72,14 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: node_uid diff --git a/modules/custom/az_migration/migrations/az_node_event.yml b/modules/custom/az_migration/migrations/az_node_event.yml index 320ac8df16..3e855f6609 100644 --- a/modules/custom/az_migration/migrations/az_node_event.yml +++ b/modules/custom/az_migration/migrations/az_node_event.yml @@ -118,7 +118,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_files @@ -132,7 +132,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media @@ -144,7 +144,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_paragraph_contact source: value no_stub: true @@ -154,7 +154,7 @@ process: - 0 target_revision_id: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_paragraph_contact source: value no_stub: true @@ -173,7 +173,7 @@ process: uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: node_uid @@ -204,7 +204,7 @@ process: method: process field_az_event_category: - - plugin: migration_lookup + plugin: migmag_lookup source: field_uaqs_event_category migration: - az_event_categories diff --git a/modules/custom/az_migration/migrations/az_node_flexible_page.yml b/modules/custom/az_migration/migrations/az_node_flexible_page.yml index 2e8d92fbea..4ba246e938 100644 --- a/modules/custom/az_migration/migrations/az_node_flexible_page.yml +++ b/modules/custom/az_migration/migrations/az_node_flexible_page.yml @@ -44,14 +44,14 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: node_uid @@ -82,14 +82,14 @@ process: method: process field_az_page_category: - - plugin: migration_lookup + plugin: migmag_lookup source: field_uaqs_flexible_category migration: - az_flexible_page_categories tmp_flexible_subpage: - - plugin: migration_lookup + plugin: migmag_lookup source: nid migration: - az_paragraph_flexible_page_sub @@ -101,7 +101,7 @@ process: process: value: - - plugin: migration_lookup + plugin: migmag_lookup source: value migration: - az_paragraph_callout diff --git a/modules/custom/az_migration/migrations/az_node_news.yml b/modules/custom/az_migration/migrations/az_node_news.yml index 73baf55b5d..e8d71167b2 100644 --- a/modules/custom/az_migration/migrations/az_node_news.yml +++ b/modules/custom/az_migration/migrations/az_node_news.yml @@ -76,7 +76,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup migration: - az_paragraph_column_image - az_paragraph_extra_info @@ -91,7 +91,7 @@ process: - 0 target_revision_id: - - plugin: migration_lookup + plugin: migmag_lookup migration: - az_paragraph_column_image - az_paragraph_extra_info @@ -129,7 +129,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_files @@ -144,7 +144,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media @@ -181,7 +181,7 @@ process: field_az_news_tags: - - plugin: migration_lookup + plugin: migmag_lookup source: field_uaqs_news_tags migration: - az_news_tags @@ -240,7 +240,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_paragraph_contact source: value no_stub: true @@ -250,7 +250,7 @@ process: - 0 target_revision_id: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_paragraph_contact source: value no_stub: true @@ -261,7 +261,7 @@ process: uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: node_uid diff --git a/modules/custom/az_migration/migrations/az_node_person.yml b/modules/custom/az_migration/migrations/az_node_person.yml index 97a318b664..01d18d4a90 100644 --- a/modules/custom/az_migration/migrations/az_node_person.yml +++ b/modules/custom/az_migration/migrations/az_node_person.yml @@ -158,14 +158,14 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: node_uid @@ -196,14 +196,14 @@ process: method: process field_az_person_category: - - plugin: migration_lookup + plugin: migmag_lookup source: field_uaqs_person_category migration: - az_person_categories field_az_person_category_sec: - - plugin: migration_lookup + plugin: migmag_lookup source: field_uaqs_person_categories migration: - az_person_categories_secondary diff --git a/modules/custom/az_migration/migrations/az_node_uaqs_basic_page_to_az_page.yml b/modules/custom/az_migration/migrations/az_node_uaqs_basic_page_to_az_page.yml index fc230a5523..e7328e4bdf 100644 --- a/modules/custom/az_migration/migrations/az_node_uaqs_basic_page_to_az_page.yml +++ b/modules/custom/az_migration/migrations/az_node_uaqs_basic_page_to_az_page.yml @@ -24,7 +24,7 @@ process: title: title uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: node_uid @@ -55,7 +55,7 @@ process: method: process field_az_main_content/target_id: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_paragraph_uaqs_basic_page_to_az_page source: nid no_stub: true @@ -65,7 +65,7 @@ process: - 0 field_az_main_content/target_revision_id: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_paragraph_uaqs_basic_page_to_az_page source: nid no_stub: true diff --git a/modules/custom/az_migration/migrations/az_paragraph_card_deck.yml b/modules/custom/az_migration/migrations/az_paragraph_card_deck.yml index ed8e1cfb4e..96146f5033 100644 --- a/modules/custom/az_migration/migrations/az_paragraph_card_deck.yml +++ b/modules/custom/az_migration/migrations/az_paragraph_card_deck.yml @@ -85,7 +85,7 @@ process: - 0 - fid - - plugin: migration_lookup + plugin: migmag_lookup migration: - az_media diff --git a/modules/custom/az_migration/migrations/az_paragraph_carousel.yml b/modules/custom/az_migration/migrations/az_paragraph_carousel.yml index 922d703429..b6a9fddcb6 100644 --- a/modules/custom/az_migration/migrations/az_paragraph_carousel.yml +++ b/modules/custom/az_migration/migrations/az_paragraph_carousel.yml @@ -35,7 +35,7 @@ process: - 0 - fid - - plugin: migration_lookup + plugin: migmag_lookup migration: - az_media target_id: '@media' diff --git a/modules/custom/az_migration/migrations/az_paragraph_column_image.yml b/modules/custom/az_migration/migrations/az_paragraph_column_image.yml index 6dbec6ce29..e415005562 100644 --- a/modules/custom/az_migration/migrations/az_paragraph_column_image.yml +++ b/modules/custom/az_migration/migrations/az_paragraph_column_image.yml @@ -22,7 +22,7 @@ process: source: field_uaqs_photo process: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media diff --git a/modules/custom/az_migration/migrations/az_paragraph_content_marquee.yml b/modules/custom/az_migration/migrations/az_paragraph_content_marquee.yml index a2331bc045..98720e1abf 100644 --- a/modules/custom/az_migration/migrations/az_paragraph_content_marquee.yml +++ b/modules/custom/az_migration/migrations/az_paragraph_content_marquee.yml @@ -31,7 +31,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media diff --git a/modules/custom/az_migration/migrations/az_paragraph_file_download.yml b/modules/custom/az_migration/migrations/az_paragraph_file_download.yml index 74b87f2de6..e8c18a0d03 100644 --- a/modules/custom/az_migration/migrations/az_paragraph_file_download.yml +++ b/modules/custom/az_migration/migrations/az_paragraph_file_download.yml @@ -22,7 +22,7 @@ process: source: field_uaqs_download_file process: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media @@ -33,7 +33,7 @@ process: source: field_uaqs_download_preview process: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media diff --git a/modules/custom/az_migration/migrations/az_paragraph_full_width_media_row.yml b/modules/custom/az_migration/migrations/az_paragraph_full_width_media_row.yml index e17bf050c7..c2c9a334ce 100644 --- a/modules/custom/az_migration/migrations/az_paragraph_full_width_media_row.yml +++ b/modules/custom/az_migration/migrations/az_paragraph_full_width_media_row.yml @@ -30,7 +30,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media diff --git a/modules/custom/az_migration/migrations/az_paragraph_gallery.yml b/modules/custom/az_migration/migrations/az_paragraph_gallery.yml index 61542d536c..38de0adce8 100644 --- a/modules/custom/az_migration/migrations/az_paragraph_gallery.yml +++ b/modules/custom/az_migration/migrations/az_paragraph_gallery.yml @@ -24,7 +24,7 @@ process: delta: delta target_id: - - plugin: migration_lookup + plugin: migmag_lookup source: fid migration: - az_media diff --git a/modules/custom/az_migration/migrations/az_person_categories.yml b/modules/custom/az_migration/migrations/az_person_categories.yml index 969cb9eb60..ef5782af9d 100644 --- a/modules/custom/az_migration/migrations/az_person_categories.yml +++ b/modules/custom/az_migration/migrations/az_person_categories.yml @@ -17,7 +17,7 @@ process: vid: plugin: default_value default_value: az_person_categories - + name: name weight: weight @@ -31,9 +31,9 @@ process: method: process source: parent - - plugin: migration_lookup + plugin: migmag_lookup migration: az_person_categories - + parent: plugin: default_value default_value: 0 diff --git a/modules/custom/az_migration/migrations/az_person_categories_secondary.yml b/modules/custom/az_migration/migrations/az_person_categories_secondary.yml index 9ce199511d..25d6065d87 100644 --- a/modules/custom/az_migration/migrations/az_person_categories_secondary.yml +++ b/modules/custom/az_migration/migrations/az_person_categories_secondary.yml @@ -18,7 +18,7 @@ process: vid: plugin: default_value default_value: az_person_categories_secondary - + name: name weight: weight @@ -32,16 +32,16 @@ process: method: process source: parent - - plugin: migration_lookup + plugin: migmag_lookup migration: az_person_categories_secondary - + parent: plugin: default_value default_value: 0 source: '@parent_id' changed: timestamp - + dependencies: enforced: module: diff --git a/modules/custom/az_migration/migrations/az_redirects.yml b/modules/custom/az_migration/migrations/az_redirects.yml index d99e0cb30b..76166b511e 100644 --- a/modules/custom/az_migration/migrations/az_redirects.yml +++ b/modules/custom/az_migration/migrations/az_redirects.yml @@ -14,7 +14,7 @@ process: method: row uid: - - plugin: migration_lookup + plugin: migmag_lookup migration: az_user no_stub: true source: node_uid diff --git a/modules/custom/az_migration/migrations/az_user.yml b/modules/custom/az_migration/migrations/az_user.yml index 4a0472c65d..c20e647561 100644 --- a/modules/custom/az_migration/migrations/az_user.yml +++ b/modules/custom/az_migration/migrations/az_user.yml @@ -49,7 +49,7 @@ process: source: picture default_value: null - - plugin: migration_lookup + plugin: migmag_lookup migration: d7_file destination: plugin: entity:user diff --git a/modules/custom/az_migration/src/Plugin/migrate/process/MigratedPathLookup.php b/modules/custom/az_migration/src/Plugin/migrate/process/MigratedPathLookup.php index cfdd184cc2..d79aefcf95 100644 --- a/modules/custom/az_migration/src/Plugin/migrate/process/MigratedPathLookup.php +++ b/modules/custom/az_migration/src/Plugin/migrate/process/MigratedPathLookup.php @@ -98,10 +98,10 @@ public function transform($value, MigrateExecutableInterface $migrate_executable 'migration' => $migration_ids, ]; - /** @var \Drupal\migrate\Plugin\migrate\process\MigrationLookup|bool $migration_lookup */ - $migration_lookup = $this->migrationPluginManager->createInstance('migration_lookup', $config, $this->migration); - if ($migration_lookup) { - $migrated_id = $migration_lookup->transform($id, $migrate_executable, $row, $destination_property); + /** @var \Drupal\migrate\Plugin\migrate\process\MigrationLookup|bool $migmag_lookup */ + $migmag_lookup = $this->migrationPluginManager->createInstance('migmag_lookup', $config, $this->migration); + if ($migmag_lookup) { + $migrated_id = $migmag_lookup->transform($id, $migrate_executable, $row, $destination_property); if ($migrated_id) { $value = $base_path . '/' . $migrated_id; } diff --git a/modules/custom/az_migration/src/Plugin/migrate/process/ParagraphsColumnImageFieldMerge.php b/modules/custom/az_migration/src/Plugin/migrate/process/ParagraphsColumnImageFieldMerge.php index 1dcaf79c29..16a96ce066 100644 --- a/modules/custom/az_migration/src/Plugin/migrate/process/ParagraphsColumnImageFieldMerge.php +++ b/modules/custom/az_migration/src/Plugin/migrate/process/ParagraphsColumnImageFieldMerge.php @@ -21,7 +21,7 @@ * Examples: * * Consider a paragraph item migration, where you want to convert a previously - * migrated media entity via migration_lookup, to an embedded media entity + * migrated media entity via migmag_lookup, to an embedded media entity * (i.e. ) and place it into a text field that is allowed to use a * text formatter that is configured to process elements. * @@ -31,7 +31,7 @@ * plugin: sub_process * source: field_uaqs_photo * process: - * - plugin: migration_lookup + * - plugin: migmag_lookup * source: fid * migration: * - az_media diff --git a/modules/custom/az_migration/src/Plugin/migrate/process/ParagraphsFileDownloadFieldMerge.php b/modules/custom/az_migration/src/Plugin/migrate/process/ParagraphsFileDownloadFieldMerge.php index 23765bdbf9..be8967a0d3 100644 --- a/modules/custom/az_migration/src/Plugin/migrate/process/ParagraphsFileDownloadFieldMerge.php +++ b/modules/custom/az_migration/src/Plugin/migrate/process/ParagraphsFileDownloadFieldMerge.php @@ -35,7 +35,7 @@ * source: field_uaqs_download_file * process: * - - * plugin: migration_lookup + * plugin: migmag_lookup * source: fid * migration: * - az_media @@ -46,7 +46,7 @@ * source: field_uaqs_download_preview * process: * - - * plugin: migration_lookup + * plugin: migmag_lookup * source: fid * migration: * - az_media