Skip to content

Commit 788d10d

Browse files
plan path tokens not resolved creating an invalid plan path name (#924)
1 parent 301016b commit 788d10d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ def _add_shared_libray_plan_to_archive(self, library_name, library_dict):
146146
library_source_name = library_dict[model_constants.SOURCE_PATH]
147147
plan_path = library_dict[model_constants.PLAN_PATH]
148148
if plan_path:
149+
plan_path = self._convert_path(plan_path)
149150
new_plan_name = None
150151
_logger.info('WLSDPLY-06389', library_name, plan_path, class_name=_class_name, method_name=_method_name)
151152
plan_dir = None
@@ -271,6 +272,7 @@ def add_application_plan_to_archive(self, application_name, application_dict):
271272
app_source_name = application_dict[model_constants.SOURCE_PATH]
272273
plan_path = application_dict[model_constants.PLAN_PATH]
273274
if plan_path:
275+
plan_path = self._convert_path(plan_path)
274276
_logger.info('WLSDPLY-06402', application_name, plan_path, class_name=_class_name,
275277
method_name=_method_name)
276278
plan_dir = None

0 commit comments

Comments
 (0)