fix : missing autoload, failing validation
This commit is contained in:
parent
50b148ca22
commit
bce276d573
@ -293,7 +293,7 @@
|
||||
'module_type_configuration': {
|
||||
'type': 'object',
|
||||
'default': {},
|
||||
'oneOf': [
|
||||
'anyOf': [
|
||||
{
|
||||
'properties': {
|
||||
'whitelist': {'$ref': '#/definitions/array_of_strings'},
|
||||
|
@ -171,7 +171,7 @@ def parse_config_options(module_generator):
|
||||
env: list of custom environment modifications to be applied in the module file
|
||||
"""
|
||||
# Get the configuration for this kind of generator
|
||||
module_configuration = copy.copy(CONFIGURATION.get(module_generator.name, {}))
|
||||
module_configuration = copy.deepcopy(CONFIGURATION.get(module_generator.name, {}))
|
||||
|
||||
#####
|
||||
# Merge all the rules
|
||||
|
Loading…
Reference in New Issue
Block a user