When using drush migrate-import command, --idlist-delimiter option should override default delimiter ":" for records.
This is currently not working as this option is never called in the command implementation:
See migrate_tools.drush.inc file, line 159:
foreach (['limit', 'feedback', 'idlist', 'update', 'force'] as $option) {
if (drush_get_option($option)) {
$options[$option] = drush_get_option($option);
}
}
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | migrate_tools-idlist_delimiter_option_not_working-3038549-3.patch | 1.28 KB | ckaotik |
| #2 | migrate_tools-idlist_delimiter_option_not_working-3038549-2.patch | 535 bytes | make77 |
Comments
Comment #2
make77 commentedComment #3
ckaotikStraight-forward patch, I've also added the missing argument to the rollback command.
Comment #5
heddnThis is for the old Drush 8 commands. They aren't really supported any longer. For now, I've committed the fix anyway but just know that there's no testing of drush 8 commands and very little support. You might try upgrading to Drush 9 for better stability.