Skip to content

Commit 1461309

Browse files
committed
correct typo
1 parent 83795d1 commit 1461309

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ def has_tns_admin(rcu_db_info):
166166
def has_atpdbinfo(rcu_db_info):
167167
is_atp = 0
168168
if model_constants.USE_ATP in rcu_db_info:
169-
print
170169
if rcu_db_info[model_constants.USE_ATP] == 'true' or rcu_db_info[model_constants.USE_ATP] == 1:
171170
is_atp = 1
172171
return is_atp

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ def __create_other_domain_artifacts(self, location, mbean_type_list):
722722
self.logger.exiting(class_name=self.__class_name, method_name=_method_name)
723723
return
724724

725-
def __set_atp_connection_property(self, root_location, propery_name, property_value):
725+
def __set_atp_connection_property(self, root_location, property_name, property_value):
726726

727727

728728
create_path = self.alias_helper.get_wlst_create_path(root_location)
@@ -732,7 +732,7 @@ def __set_atp_connection_property(self, root_location, propery_name, property_va
732732
token_name = self.alias_helper.get_name_token(root_location)
733733

734734
if token_name is not None:
735-
root_location.add_name_token(token_name, propery_name)
735+
root_location.add_name_token(token_name, property_name)
736736

737737

738738
mbean_name = self.alias_helper.get_wlst_mbean_name(root_location)
@@ -750,7 +750,7 @@ def __set_atp_connection_property(self, root_location, propery_name, property_va
750750
property_value )
751751
self.wlst_helper.set(wlst_name, wlst_value)
752752

753-
root_location.remove_name_token(propery_name)
753+
root_location.remove_name_token(property_name)
754754

755755

756756
def __configure_fmw_infra_database(self):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def get_rcu_schemas(self):
134134
def required_rcu(self):
135135
"""
136136
Test whether it requires RCU components.
137-
:return: true if it requires rcu compoent
137+
:return: true if it requires rcu components
138138
"""
139139
# No need to resolve the paths and we need this to work prior to
140140
# resolution for create.py argument processing.

0 commit comments

Comments
 (0)