Skip to content

Commit 24475dc

Browse files
committed
Merge branch 'github-1576' into 'main'
fixing issue with overriding JDBC Driver properties for RCU STB table during RCU precheck See merge request weblogic-cloud/weblogic-deploy-tooling!1727
2 parents 9424bde + e038404 commit 24475dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/python/wlsdeploy/tool/util/rcu_helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -884,10 +884,10 @@ def __update_precheck_from_model_data_source(self, jdbc_driver_name, jdbc_conn_s
884884
new_password = dictionary_utils.get_element(model_driver_params_dict, PASSWORD_ENCRYPTED)
885885
if new_password is not None:
886886
new_password = self._aliases.decrypt_password(new_password)
887-
props.set('password', new_password)
887+
props.put('password', new_password)
888888

889889
for prop_key, prop_value in model_properties_dict.iteritems():
890-
props.set(prop_key, prop_value)
890+
props.put(prop_key, prop_value)
891891

892892
self.__logger.exiting(class_name=self.__class_name, method_name=_method_name,
893893
result=[new_jdbc_driver_name, new_jdbc_conn_string])

0 commit comments

Comments
 (0)