Skip to content

Add empty model folders to domain #994

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 1 commit into from
Oct 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 5 additions & 1 deletion core/src/main/python/wlsdeploy/tool/create/creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,11 @@ def _create_mbean(self, type_name, model_nodes, base_location, log_created=False

self.logger.entering(type_name, str(base_location), log_created,
class_name=self.__class_name, method_name=_method_name)
if model_nodes is None or len(model_nodes) == 0 or not self._is_type_valid(base_location, type_name):

if model_nodes is None or len(model_nodes) == 0:
self.logger.fine('WLSDPLY-12568', type_name, class_name=self.__class_name, method_name=_method_name)

if not self._is_type_valid(base_location, type_name):
return

location = LocationContext(base_location).append_location(type_name)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1327,6 +1327,7 @@ WLSDPLY-12564=Unable to retrieve database connection string, please make sure it
WLSDPLY-12565=The archive file was not provided so there are no custom files to extract
WLSDPLY-12566=Installing {0} user custom files to domain home {1}
WLSDPLY-12567=The archive file {0} contains no user custom files to install
WLSDPLY-12568=Creating empty folder {0}. Folder contains no attributes or sub-folders.

# domain_typedef.py
WLSDPLY-12300={0} got the domain type {1} but the domain type definition file {2} was not valid: {3}
Expand Down