Skip to content

Commit bac95ca

Browse files
committed
Merge branch 'provider-check' into 'main'
Check for artificial folder type before checking for multiple type See merge request weblogic-cloud/weblogic-deploy-tooling!1834
2 parents c5661d0 + 2acacc7 commit bac95ca

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)