Skip to content

Commit 2acacc7

Browse files
committed
Check for artificial folder type before checking for multiple type
1 parent c5661d0 commit 2acacc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/python/wlsdeploy/aliases/aliases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1632,7 +1632,7 @@ def get_model_type_and_name(self, location):
16321632
key = folders[-1]
16331633

16341634
name = None
1635-
if self.supports_multiple_mbean_instances(location):
1635+
if (not self.is_artificial_type_folder(location)) and self.supports_multiple_mbean_instances(location):
16361636
token = self.get_name_token(location)
16371637
if token is not None:
16381638
name = location.get_name_for_token(token)

0 commit comments

Comments
 (0)