Skip to content

fixing an issue where a deprecation message was still generating a warning #1409

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4410,7 +4410,7 @@ protected void extractWallet(File domainHome, String extractPath, List<String> z
//
if (zipEntries.size() == 1 && firstZipEntry.toLowerCase().endsWith(".zip")) {
if (!StringUtils.isEmpty(deprecationKey)) {
LOGGER.warning(deprecationKey, getArchiveFileName(), firstZipEntry, extractPath);
LOGGER.deprecation(deprecationKey, getArchiveFileName(), firstZipEntry, extractPath);
}
unzipZippedArchiveFileEntry(firstZipEntry, fullExtractPath);
} else {
Expand Down
8 changes: 4 additions & 4 deletions documentation/3.0/content/release-notes/_index.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
+++
title = "Release Notes"
date = 2019-02-22T15:27:38-05:00
weight = 94
weight = 93
pre = "<b> </b>"
+++


### Changes in Release 3.0.1
### Changes in Release 3.0.2
- [Major New Features](#major-new-features)
- [Other Changes](#other-changes)
- [Bugs Fixes](#bug-fixes)
Expand All @@ -20,8 +20,8 @@ None
None

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

#### Known Issues
1. When running `discoverDomain` with the `-remote` flag, there are several MBeans that are not being properly handled that
Expand Down
37 changes: 37 additions & 0 deletions documentation/3.0/content/release-notes/release-3.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
+++
title = "Release 3.0.1"
date = 2019-02-22T15:27:38-05:00
weight = 94
pre = "<b> </b>"
+++


### Changes in Release 3.0.1
- [Major New Features](#major-new-features)
- [Other Changes](#other-changes)
- [Bugs Fixes](#bug-fixes)
- [Known Issues](#known-issues)


#### Major New Features
None

#### Other Changes
None

#### Bug Fixes
- #1396: Added additional validation to the `RCUDbInfo` section.
- #1398: Corrected a bug introduced in 3.0.0 that broke validation of sparse models with dynamic clusters.

#### Known Issues
1. When running `discoverDomain` with the `-remote` flag, there are several MBeans that are not being properly handled that
will result in `INFO` level messages that look similar to the example shown below. These errors seem to happen only when the MBean is
non-existent so the resulting model should still be accurate. These issues are expected to be fixed in a future release.

```
####<Feb 16, 2023 1:40:00 PM> <INFO> <Discoverer> <_add_to_dictionary> <WLSDPLY-06106> <Unable to add ServerFailureTrigger
from location /Clusters/mycluster/OverloadProtection/mycluster to the model : Failed to convert the wlst attribute name and
value for the model at location (model_folders = ['Cluster', 'OverloadProtection'], 'name_tokens' = {'DOMAIN': 'tododomain',
'CLUSTER': 'mycluster','OVERLOADPROTECTION': 'mycluster'}) : The wlst attribute ServerFailureTrigger is not defined for the
model folder /Cluster/OverloadProtection>
```