public function stop($migration_id = '') {
/** @var \Drupal\migrate\Plugin\MigrationInterface $migration */
$migration = $this->migrationPluginManager->createInstance(
$migration_id
);
There's no reason for this parameter to be optional, as if you omit it, the command can't do anything useful, and you get an error:
[error] Migration does not exist
In MigrateToolsCommands.php line 483:
Migration does not exist
(which is confusing if you're misremembering and thinking 'mst' is 'migrate status'!
Issue fork migrate_tools-3121477
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
- 3121477-migration-id-for
changes, plain diff MR !1
Comments
Comment #4
henry.odiete commentedComment #6
heddn