Skip to content

Commit 82cdf34

Browse files
fixing an issue where a deprecation message was still generating a warning (#1409)
1 parent 0c6b4f5 commit 82cdf34

File tree

3 files changed

+42
-5
lines changed

3 files changed

+42
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4410,7 +4410,7 @@ protected void extractWallet(File domainHome, String extractPath, List<String> z
44104410
//
44114411
if (zipEntries.size() == 1 && firstZipEntry.toLowerCase().endsWith(".zip")) {
44124412
if (!StringUtils.isEmpty(deprecationKey)) {
4413-
LOGGER.warning(deprecationKey, getArchiveFileName(), firstZipEntry, extractPath);
4413+
LOGGER.deprecation(deprecationKey, getArchiveFileName(), firstZipEntry, extractPath);
44144414
}
44154415
unzipZippedArchiveFileEntry(firstZipEntry, fullExtractPath);
44164416
} else {

documentation/3.0/content/release-notes/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
+++
22
title = "Release Notes"
33
date = 2019-02-22T15:27:38-05:00
4-
weight = 94
4+
weight = 93
55
pre = "<b> </b>"
66
+++
77

88

9-
### Changes in Release 3.0.1
9+
### Changes in Release 3.0.2
1010
- [Major New Features](#major-new-features)
1111
- [Other Changes](#other-changes)
1212
- [Bugs Fixes](#bug-fixes)
@@ -20,8 +20,8 @@ None
2020
None
2121

2222
#### Bug Fixes
23-
- #1396: Added additional validation to the `RCUDbInfo` section.
24-
- #1398: Corrected a bug introduced in 3.0.0 that broke validation of sparse models with dynamic clusters.
23+
- #1405: Corrected some issues with the Windows shell scripts where they were not properly handling paths with spaces.
24+
- #1409: Corrected a bug where a wallet deprecation message was still being logged as a warning.
2525

2626
#### Known Issues
2727
1. When running `discoverDomain` with the `-remote` flag, there are several MBeans that are not being properly handled that
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
+++
2+
title = "Release 3.0.1"
3+
date = 2019-02-22T15:27:38-05:00
4+
weight = 94
5+
pre = "<b> </b>"
6+
+++
7+
8+
9+
### Changes in Release 3.0.1
10+
- [Major New Features](#major-new-features)
11+
- [Other Changes](#other-changes)
12+
- [Bugs Fixes](#bug-fixes)
13+
- [Known Issues](#known-issues)
14+
15+
16+
#### Major New Features
17+
None
18+
19+
#### Other Changes
20+
None
21+
22+
#### Bug Fixes
23+
- #1396: Added additional validation to the `RCUDbInfo` section.
24+
- #1398: Corrected a bug introduced in 3.0.0 that broke validation of sparse models with dynamic clusters.
25+
26+
#### Known Issues
27+
1. When running `discoverDomain` with the `-remote` flag, there are several MBeans that are not being properly handled that
28+
will result in `INFO` level messages that look similar to the example shown below. These errors seem to happen only when the MBean is
29+
non-existent so the resulting model should still be accurate. These issues are expected to be fixed in a future release.
30+
31+
```
32+
####<Feb 16, 2023 1:40:00 PM> <INFO> <Discoverer> <_add_to_dictionary> <WLSDPLY-06106> <Unable to add ServerFailureTrigger
33+
from location /Clusters/mycluster/OverloadProtection/mycluster to the model : Failed to convert the wlst attribute name and
34+
value for the model at location (model_folders = ['Cluster', 'OverloadProtection'], 'name_tokens' = {'DOMAIN': 'tododomain',
35+
'CLUSTER': 'mycluster','OVERLOADPROTECTION': 'mycluster'}) : The wlst attribute ServerFailureTrigger is not defined for the
36+
model folder /Cluster/OverloadProtection>
37+
```

0 commit comments

Comments
 (0)