Automatically closed - issue fixed for 2 weeks with no activity.
\Drupal\ban\Plugin\migrate\destination\BlockedIp
migrate destination plugin's import method violates \Drupal\migrate\Plugin\MigrateDestinationInterface::import
, because it doesn't return anything (so its return value is NULL
. This triggers a migration message in MigrateExecutable
.
Execute d7_blocked_ips
migration and then check the migration messages.
Since the IPs are unique, and since the destination plugin already declares that it identifies the migrated rows with the blocked IP address, add a return statement:
return ['ip' => $row->getDestinationProperty('ip')];
Patch + test.
Nothing.
Nothing.
Nothing.
Not needed.
Fixed
9.5
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.