Skip to content

Commit b876fa1

Browse files
Reversed changes not meant to commit
1 parent d97117a commit b876fa1

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,6 @@ def __extend_domain(self, domain_home):
314314

315315
self.logger.info('WLSDPLY-12207', self._domain_name, domain_home,
316316
class_name=self.__class_name, method_name=_method_name)
317-
# we might want to replace this later to extend a domain in update
318317
self.wlst_helper.read_domain(domain_home)
319318
self.__set_app_dir()
320319

@@ -690,12 +689,12 @@ def __configure_fmw_infra_database(self):
690689

691690
location.append_location(JDBC_DRIVER_PARAMS_PROPERTIES)
692691
token_name = self.alias_helper.get_name_token(location)
692+
693693
if token_name is not None:
694694
location.add_name_token(token_name, DRIVER_PARAMS_USER_PROPERTY)
695695

696696
stb_user = self.wls_helper.get_stb_user_name(rcu_prefix)
697697
self.logger.fine('WLSDPLY-12222', stb_user, class_name=self.__class_name, method_name=_method_name)
698-
#
699698
wlst_path = self.alias_helper.get_wlst_attributes_path(location)
700699
self.wlst_helper.cd(wlst_path)
701700
wlst_name, wlst_value = \

core/src/main/python/wlsdeploy/tool/discover/topology_discoverer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,6 @@ def discover_security_configuration(self):
289289
security_configuration = self._find_singleton_name_in_folder(location)
290290
if security_configuration is not None:
291291
_logger.info('WLSDPLY-06622', class_name=_class_name, method_name=_method_name)
292-
location.add_name_token(self._alias_helper.get_name_token(location), security_configuration)
293292
self._populate_model_parameters(result, location)
294293
self._discover_subfolders(result, location)
295294
_logger.exiting(class_name=_class_name, method_name=_method_name)

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,6 @@ def is_connected(self):
885885
Determine if the wlst session is currently connected to the admin server.
886886
:return: True if connected
887887
"""
888-
print 'IAMINCONNECED 999999999999999999999999999999999999999'
889888
return wlst_helper.is_connected()
890889

891890
def custom(self):

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,10 +442,9 @@ def get_cmo():
442442

443443
def is_connected():
444444
"""
445-
Determine if wlst is currently conntected to the admin server - from the WlstContext
445+
Determine if wlst is currently connected to the admin server - from the WlstContext
446446
:return: Return True if currently connected
447447
"""
448-
print '******* wlst connected ', wlst.connected
449448
return wlst.connected == 'true'
450449

451450

0 commit comments

Comments
 (0)