It'd be great if cq_osgi_config could warn the user and correct simple mistakes in property types.
Use cases:
true (boolean) is expected, but 'true' (string) was used
- string was used instead of 1 element array
- WRONG:
'htmllibmanager.processor.js' => 'min:gcc'
- RIGHT:
'htmllibmanager.processor.js' => ['min:gcc']
Correction should be optional and controlled via cq_osgi_config property.
It'd be great if
cq_osgi_configcould warn the user and correct simple mistakes in property types.Use cases:
true(boolean) is expected, but'true'(string) was used'htmllibmanager.processor.js' => 'min:gcc''htmllibmanager.processor.js' => ['min:gcc']Correction should be optional and controlled via
cq_osgi_configproperty.