File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
python/wlsdeploy/tool/create
resources/oracle/weblogic/deploy/messages Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -676,6 +676,8 @@ def __set_core_domain_params(self):
676
676
677
677
if USE_SAMPLE_DATABASE in self ._domain_info :
678
678
use_sample_db = self ._domain_info [USE_SAMPLE_DATABASE ]
679
+ if not isinstance (use_sample_db , basestring ):
680
+ use_sample_db = str (use_sample_db )
679
681
self .wlst_helper .set_option_if_needed (USE_SAMPLE_DATABASE , use_sample_db )
680
682
681
683
self .__set_domain_name ()
@@ -1010,8 +1012,8 @@ def __configure_fmw_infra_database(self):
1010
1012
_method_name = '__configure_fmw_infra_database'
1011
1013
self .logger .entering (class_name = self .__class_name , method_name = _method_name )
1012
1014
1013
- # only continue with RCU configuration for a JRF domain .
1014
- if not self ._domain_typedef .is_jrf_domain_type ():
1015
+ # only continue with RCU configuration for domain type that requires RCU .
1016
+ if not self ._domain_typedef .required_rcu ():
1015
1017
self .logger .finer ('WLSDPLY-12249' , class_name = self .__class_name , method_name = _method_name )
1016
1018
return
1017
1019
Original file line number Diff line number Diff line change @@ -1306,7 +1306,7 @@ WLSDPLY-12246=Adding custom extension template file {0} to domain
1306
1306
WLSDPLY-12247 =WebLogic does not support targeting resources to dynamic servers. JRF product related resources \
1307
1307
will be targeted to the dynamic cluster using the applyJRF function.
1308
1308
WLSDPLY-12248 =The server group(s) {0} will not be targeted to the Admin server or a configured manage server
1309
- WLSDPLY-12249 =Domain is not JRF , skipping database configuration
1309
+ WLSDPLY-12249 =Domain typedef has no RCU schema dependencies , skipping database configuration
1310
1310
WLSDPLY-12250 =Domain bin ({0}) specified in the model but the archive file name was not provided
1311
1311
WLSDPLY-12251 =Installing domain script {0} from archive to bin directory of {1}
1312
1312
WLSDPLY-12252 =Copying domain script {0} to bin directory of {1}
You can’t perform that action at this time.
0 commit comments