Skip to content

Commit f9c9c02

Browse files
Fix 10.3.6 default schema user name
1 parent d3c5ee7 commit f9c9c02

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/src/main/python/wlsdeploy/util/weblogic_helper.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ def get_stb_user_name(self, rcu_prefix):
114114
:param rcu_prefix: the RCU prefix
115115
:return: the Service Table schema user name
116116
"""
117-
return rcu_prefix + '_STB'
117+
if self.is_weblogic_version_or_above('12.1.2'):
118+
return rcu_prefix + '_STB'
119+
return rcu_prefix + '_MDS'
118120

119121
def get_jrf_service_table_datasource_name(self):
120122
"""

0 commit comments

Comments
 (0)