File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Fixed
11
+
12
+ - \# 203: Frodo no longer outputs cosmetic error messages when exporting IDM config.
13
+
10
14
## [ 0.22.1] - 2023-02-14
11
15
12
16
### Changed
Original file line number Diff line number Diff line change @@ -111,6 +111,28 @@ export async function exportAllRawConfigEntities(directory) {
111
111
getConfigEntityError . response ?. data ?. message ===
112
112
'This operation is not available in ForgeRock Identity Cloud.'
113
113
) &&
114
+ ! (
115
+ // list of config entities, which do not exist by default or ever.
116
+ (
117
+ [
118
+ 'script' ,
119
+ 'notificationFactory' ,
120
+ 'apiVersion' ,
121
+ 'metrics' ,
122
+ 'repo.init' ,
123
+ 'endpoint/validateQueryFilter' ,
124
+ 'endpoint/oauthproxy' ,
125
+ 'external.rest' ,
126
+ 'scheduler' ,
127
+ 'org.apache.felix.fileinstall/openidm' ,
128
+ 'cluster' ,
129
+ 'endpoint/mappingDetails' ,
130
+ 'fieldPolicy/teammember' ,
131
+ ] . includes ( configEntity . _id ) &&
132
+ getConfigEntityError . response ?. status === 404 &&
133
+ getConfigEntityError . response ?. data ?. reason === 'Not Found'
134
+ )
135
+ ) &&
114
136
// https://bugster.forgerock.org/jira/browse/OPENIDM-18270
115
137
! (
116
138
getConfigEntityError . response ?. status === 404 &&
You can’t perform that action at this time.
0 commit comments