Skip to content

Commit 45386e8

Browse files
authored
Exclude zip directory entry from OPSS wallet check (#404)
1 parent eace9c4 commit 45386e8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

core/src/main/java/oracle/weblogic/deploy/util/WLSDeployArchive.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,7 @@ public String getOPSSWallet() throws WLSDeployArchiveIOException {
561561

562562
LOGGER.entering(CLASS, METHOD);
563563
List<String> result = getZipFile().listZipEntries(ARCHIVE_OPSS_WALLET_PATH + ZIP_SEP);
564+
result.remove(ARCHIVE_OPSS_WALLET_PATH + ZIP_SEP);
564565
LOGGER.exiting(CLASS, METHOD, result);
565566
if (result.size() > 0) {
566567
return result.get(0);

0 commit comments

Comments
 (0)