Skip to content

Commit 9378974

Browse files
author
Johnny Shum
committed
clean up
1 parent 25f70d5 commit 9378974

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Jenkinsfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ pipeline {
3737
}
3838
}
3939
stage ('Verify') {
40+
when {
41+
changeRequest()
42+
}
4043
steps {
4144
sh 'mvn -P system-test -Dmw_home=${ORACLE_HOME} test-compile failsafe:integration-test'
4245
}

core/src/main/python/wlsdeploy/tool/create/domain_creator.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,7 @@ def create(self):
174174
self.__fail_mt_1221_domain_creation()
175175
self.__create_domain()
176176
self.__deploy()
177-
#elf.__set_server_groups()
178177
self.__update_domain()
179-
# self.__update_domain()
180178
self.__deploy_after_update()
181179
self.__create_boot_dot_properties()
182180

@@ -409,9 +407,6 @@ def __create_base_domain(self, domain_home):
409407
self.__set_core_domain_params()
410408
self.logger.info('WLSDPLY-12205', self._domain_name, domain_home,
411409
class_name=self.__class_name, method_name=_method_name)
412-
413-
# self.wlst_helper.write_domain(domain_home)
414-
415410
self.logger.info('WLSDPLY-12206', self._domain_name, class_name=self.__class_name, method_name=_method_name)
416411
self.wlst_helper.close_template()
417412
self.wlst_helper.read_domain(domain_home)
@@ -514,7 +509,6 @@ def __extend_domain_with_select_template(self, domain_home):
514509
def __set_server_groups(self):
515510
_method_name = '__set_server_groups'
516511
self.logger.entering(class_name=self.__class_name, method_name=_method_name)
517-
#self.wlst_helper.read_domain(self._domain_home)
518512
if self.wls_helper.is_set_server_groups_supported():
519513
# 12c versions set server groups directly
520514
server_groups_to_target = self._domain_typedef.get_server_groups_to_target()

0 commit comments

Comments
 (0)