Skip to content

Commit 73bb8d2

Browse files
authored
fix rcu_prefix case issue (#890)
1 parent 0243d38 commit 73bb8d2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ def update_rcu_password(self):
3434
if RCU_DB_INFO in domain_info:
3535
rcu_db_info = RcuDbInfo(self.model_context, self.aliases, domain_info[RCU_DB_INFO])
3636
rcu_schema_pass = rcu_db_info.get_rcu_schema_password()
37-
rcu_prefix = rcu_db_info.get_rcu_prefix()
37+
# 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()
3840

3941
location = LocationContext()
4042
location.append_location(JDBC_SYSTEM_RESOURCE)

0 commit comments

Comments
 (0)