Skip to content

work around for missing trust service identity asserter schematype ja… #1439

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 31, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion core/src/main/python/wlsdeploy/tool/discover/discoverer.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,12 @@ def _discover_artificial_folder(self, model_subfolder_type, location, name_token
location.add_name_token(name_token, name)
massaged = self._inspect_artificial_folder_name(name, location)
location.add_name_token(name_token, massaged)
artificial = self._get_artificial_type(location)
# circumventing problems if the trust identity asserter schematype jar
# is not in the oracle home. Force it to have the correct name.
if name == 'Trust Service Identity Asserter':
artificial = 'TrustServiceIdentityAsserter'
else:
artificial = self._get_artificial_type(location)
if artificial is None:
if self._aliases.is_custom_folder_allowed(location):
_logger.fine('WLSDPLY-06148', model_subfolder_type, massaged, location.get_folder_path(),
Expand Down