Skip to content

Commit be5ae01

Browse files
Wdt 685 keystore file missing arg (#1261)
* Fix for flattened folders without tokens in location * Missing argument in remote getkeystorearchivepath
1 parent adb6cbf commit be5ae01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ def _add_server_keystore_file_to_archive(self, server_name, archive_file, file_p
841841
_logger.finer('WLSDPLY-06623', file_path, server_name, class_name=_class_name, method_name=_method_name)
842842
new_name = None
843843
if self._model_context.is_remote():
844-
new_name = archive_file.getServerKeyStoreArchivePath(file_path)
844+
new_name = archive_file.getServerKeyStoreArchivePath(server_name, file_path)
845845
self.add_to_remote_map(file_path, new_name,
846846
WLSDeployArchive.ArchiveEntryType.SERVER_KEYSTORE.name())
847847
elif not self._model_context.skip_archive():

0 commit comments

Comments
 (0)