Skip to content

Commit 5da71f4

Browse files
CarolynRountreeddsharpe
authored andcommitted
add instead of replace in recursive call (#519)
1 parent cc40129 commit 5da71f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/python/wlsdeploy/tool/discover/discoverer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ def _discover_artificial_folder(self, model_subfolder_type, location, name_token
390390
if self._alias_helper.is_custom_folder_allowed(location):
391391
_logger.fine('WLSDPLY-06148', model_subfolder_type, massaged, location.get_folder_path(),
392392
class_name=_class_name, method_name=_method_name)
393-
subfolder_result = self._custom_folder.discover_custom_mbean(location, model_subfolder_type,
394-
massaged)
393+
subfolder_result.update(
394+
self._custom_folder.discover_custom_mbean(location, model_subfolder_type, massaged))
395395
else:
396396
_logger.warning('WLSDPLY-06123', self._alias_helper.get_model_folder_path(location),
397397
class_name=_class_name, method_name=_method_name)

0 commit comments

Comments
 (0)