- Issue created by @chrisolof
In facets.views.schema.yml, processor_configs
are described as each having a processor_id
, yet this does not appear to be set in exported config (processor_id is totally absent).
This doesn't appear to cause any functional problems, but results in a missing schema error (core/lib/Drupal/Core/Config/Development/ConfigSchemaChecker.php:98) when attempting to utilize exported facets exposed filter config in a test.
processor_id
appears to be necessary for the config system to understand what to expect for a given processor's settings. See the last line in facets.views.schema.yml:
type: plugin.plugin_configuration.facets_processor.[%parent.processor_id]
processor_configs
sequence item in the config with a sort
settings key set).processor_id
.processor_id: raw_value_widget_order
into the sequence item and see that the missing schema error no longer presents.TBD
Propose resolution, create MR, get review.
None.
None.
Required processor_id
present in exported facets exposed filter config.
Active
3.0
Code