Skip to content

Commit 24a7646

Browse files
rakillenrobertpatrick
authored andcommitted
Inject variables correctly for security providers
1 parent 867b66c commit 24a7646

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

core/src/main/python/wlsdeploy/tool/util/variable_injector.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,10 @@ def _traverse_variables(model_section, mbean_list):
317317
location.append_location(mbean)
318318
name_token = self._aliases.get_name_token(location)
319319
if not mbean_name_list:
320-
if self._aliases.supports_multiple_mbean_instances(location):
320+
if self._aliases.is_artificial_type_folder(location):
321+
pass # do nothing, continue to tokenize attributes
322+
elif self._aliases.requires_artificial_type_subfolder_handling(location) or \
323+
self._aliases.supports_multiple_mbean_instances(location):
321324
mbean_name_list = next_model_section
322325
else:
323326
self._check_name_token(location, name_token)

0 commit comments

Comments
 (0)