Skip to content

Commit b20735f

Browse files
Allow modification of adjudicator (#974)
1 parent 18d05d9 commit b20735f

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -271,20 +271,12 @@ def _delete_existing_providers(self, location):
271271
def _check_provider_type(self, type_name, model_nodes):
272272
"""
273273
Determine if the specified security configuration type should be updated.
274-
The adjudicator type cannot currently be updated.
275274
:param type_name: the model folder type
276275
:param model_nodes: the model dictionary of the specified model folder type
277276
:return: True if the provider type should be updated, False if it should be skipped
278277
"""
279278
_method_name = '_check_provider_type'
280279

281-
# there are problems re-configuring adjudicators, don't update them
282-
if type_name == self.__adjudicator_type:
283-
if not self._is_default_adjudicator_configuration(model_nodes):
284-
self.logger.warning('WLSDPLY-12137', class_name=self.__class_name, method_name=_method_name)
285-
286-
return False
287-
288280
return True
289281

290282
def _is_default_adjudicator_configuration(self, model_nodes):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ def security_provider_interface_name(mbean_instance, mbean_interface_name):
366366
result = getter()
367367
if result.endswith('ProviderMBean'):
368368
result = mbean_interface_name
369-
_logger.warning('WLSDPLY-06779', str(mbean_instance), class_name=_class_name, method_name=_method_name)
369+
_logger.fine('WLSDPLY-06779', str(mbean_instance), class_name=_class_name, method_name=_method_name)
370370
except (Exception, JException):
371371
_logger.warning('WLSDPLY-06778', mbean_interface_name, class_name=_class_name, method_name=_method_name)
372372
result = mbean_interface_name

0 commit comments

Comments
 (0)