Skip to content

Commit dd9597a

Browse files
WLST lsa does not return correct mbean map for mbeans that have only one attribute
1 parent dde9397 commit dd9597a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/python/wlsdeploy/util/wlst_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def lsa(path=None, log_throwing=True):
240240
_method_name = 'lsa'
241241
result = _ls(_method_name, 'a', path, log_throwing)
242242
make_dict = dict()
243-
if result and len(result) > 1:
243+
if result and len(result) > 0:
244244
for entry in result.entrySet():
245245
key = entry.getKey()
246246
value = entry.getValue()

0 commit comments

Comments
 (0)