We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0243d38 commit 73bb8d2Copy full SHA for 73bb8d2
core/src/main/python/wlsdeploy/tool/util/rcu_helper.py
@@ -34,7 +34,9 @@ def update_rcu_password(self):
34
if RCU_DB_INFO in domain_info:
35
rcu_db_info = RcuDbInfo(self.model_context, self.aliases, domain_info[RCU_DB_INFO])
36
rcu_schema_pass = rcu_db_info.get_rcu_schema_password()
37
- rcu_prefix = rcu_db_info.get_rcu_prefix()
+ # upper case the prefix, the user may specify prefix as lower case
38
+ # but the prefix will always be upper case in the db.
39
+ rcu_prefix = rcu_db_info.get_rcu_prefix().upper()
40
41
location = LocationContext()
42
location.append_location(JDBC_SYSTEM_RESOURCE)
0 commit comments