- Issue created by @joachim
In tests we have to do something like this:
$processors = parent::getImportConfigProcessorSettings();
$processors['redirect_processor'] = [
'weights' => [
'prepare_importable_entity_data' => -200,
'post_entity_save' => 100,
],
];
which is duplicating the default weights on the plugin's definition, and is brittle.
Instead, we should have a way to specify that we want the defaults from the plugin definition.
Active
4.0
Code