Since 3.1.5, see commit
Running config_inspector (via the drush command) now throws the following
stage_file_proxy.settings Correct 78% 1 errors ValidKeys: '<infer>'
LangcodeRequiredIfTranslatableValues: null
Execute drush config:inspect
The violation actually comes from \Symfony\Component\Validator\Constraints\RegexValidator::validate when checking the origin key. match: true
is the default, so the constraint should be either:
1.
pattern: '/\/$/'
match: false
2. OR
pattern: '/[^\/]$/'
match: true
?
None
None
None
Active
3.1
Code