Skip to content

Commit 4245e90

Browse files
committed
Merge branch 'server-key-stores' into 'main'
fixing discover -skip_archive for server key store files See merge request weblogic-cloud/weblogic-deploy-tooling!1775
2 parents 509efb5 + 51548ba commit 4245e90

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,6 +1036,7 @@ def _add_keystore_file_to_archive(self, model_name, model_value, location):
10361036
file_path = model_value
10371037
if not self._model_context.is_remote():
10381038
file_path = self._convert_path(model_value)
1039+
10391040
if server_name:
10401041
new_name = self._add_server_keystore_file_to_archive(model_name, server_name, archive_file, file_path)
10411042
else:
@@ -1056,7 +1057,7 @@ def _add_server_keystore_file_to_archive(self, attribute_name, server_name, arch
10561057
_method_name = '_add_server_keystore_file_to_archive'
10571058
_logger.entering(server_name, archive_file, file_path, class_name=_class_name, method_name=_method_name)
10581059
_logger.finer('WLSDPLY-06623', file_path, server_name, class_name=_class_name, method_name=_method_name)
1059-
new_name = None
1060+
new_name = file_path
10601061
if self._model_context.is_remote():
10611062
new_name = WLSDeployArchive.getServerKeyStoreArchivePath(server_name, file_path)
10621063
self.add_to_remote_map(file_path, new_name,

0 commit comments

Comments
 (0)