- 🇩🇪Germany Grevil
I am unsure, if this is related, but in line 81 of the core `core/modules/file/src/Plugin/migrate/process/d6/FieldFile.php` process-plugin a hard coded `d6_file` is used for the migration lookup:
$lookup_result = $this->migrateLookup->lookup('d6_file', [$value['fid']]);
Unfortunately, this will cause a problem when migrating d6 file field instances, as the migration id "d6_file" is not resolvable, when using "migrate_upgrade" as the actual migration id is prefixed with "upgrade_". Meaning, once migrate_upgrade is activated, this id should get overwritten with "upgrade_d6_file" instead:
$lookup_result = $this->migrateLookup->lookup('upgrade_d6_file', [$value['fid']]);
But this would probably need changes in the core file first?