Skip to content

Commit 5825371

Browse files
committed
Fix compile problem in discoverer
1 parent 55a33eb commit 5825371

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
@@ -127,9 +127,9 @@ def _populate_model_parameters(self, dictionary, location):
127127
# Find the attributes that are not in the LSA wlst map but are in the alias definitions with GET access
128128
get_attributes = [get_param for get_param in wlst_get_params if not get_param in wlst_did_get]
129129
for get_attribute in get_attributes:
130-
success, wlst_value = self._get_attribute_value_with_get(wlst_extra_param, wlst_path)
130+
success, wlst_value = self._get_attribute_value_with_get(get_attribute, wlst_path)
131131
if success:
132-
self._add_to_dictionary(dictionary, location, wlst_extra_param, wlst_value, wlst_path)
132+
self._add_to_dictionary(dictionary, location, get_attribute, wlst_value, wlst_path)
133133

134134
def _get_attribute_value_with_get(self, wlst_get_param, wlst_path):
135135
_method_name = '_get_attribute_value_with_get'

0 commit comments

Comments
 (0)