Skip to content
Snippets Groups Projects

Issue #3494209: Drupal 7 to Drupal 11 migration runs forever

8 files
+ 9
217
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -57,17 +57,6 @@ class FileEntity extends MediaMigrationFieldPluginBase {
* {@inheritdoc}
*/
public function defineValueProcessPipeline(MigrationInterface $migration, $field_name, $data) {
// The "media_migration_delta_sort" plugin sorts field values for PostgreSQL
// sources.
// @see \Drupal\media_migration\Plugin\migrate\process\MediaMigrationDeltaSort
// @todo remove when https://drupal.org/i/3164520 is fixed.
$process = [
[
'plugin' => 'media_migration_delta_sort',
'source' => $field_name,
],
];
$process[] = [
'plugin' => 'sub_process',
'process' => [
Loading