File tree 1 file changed +8
-0
lines changed
core/src/main/python/wlsdeploy/tool/util
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,14 @@ def update_rcu_password(self):
54
54
for ds_name in ds_names :
55
55
location = deployer_utils .get_jdbc_driver_params_location (ds_name , self .aliases )
56
56
password_location = LocationContext (location )
57
+ list_path = self .aliases .get_wlst_list_path (location )
58
+ if not self .wlst_helper .path_exists (list_path ):
59
+ # For update case when a new custom data source has not been persisted,
60
+ # the driver params location is just a placeholder and will result in error
61
+ # if we try to get the attribute list from the location.
62
+ # Since we only care about rcu stock data sources from the template for changing
63
+ # rcu schema password; we can skip for any new custom data source.
64
+ continue
57
65
58
66
wlst_path = self .aliases .get_wlst_attributes_path (location )
59
67
self .wlst_helper .cd (wlst_path )
You can’t perform that action at this time.
0 commit comments