Skip to content

Commit

Permalink
Merge pull request #366 from atomicsamurai/main
Browse files Browse the repository at this point in the history
Fix for #363
  • Loading branch information
atomicsamurai authored Feb 5, 2024
2 parents 26f64e6 + 7976ce0 commit e5b8218
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- \#363: Doing a full export of IDM from FIDC started hanging between v2.0.0.32 and v2.0.0.33

## [2.0.0-48] - 2024-02-01

## [2.0.0-47] - 2024-01-21
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/cli/idm/idm-export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ program
options.envFile
} for variable replacement...`
);
exportAllConfigEntities(options.entitiesFile, options.envFile);
await exportAllConfigEntities(options.entitiesFile, options.envFile);
await warnAboutOfflineConnectorServers();
}
// --all-separate -A without variable replacement
else if (options.allSeparate && (await getTokens())) {
verboseMessage(
`Exporting all IDM configuration objects into separate files in ${state.getDirectory()}...`
);
exportAllRawConfigEntities();
await exportAllRawConfigEntities();
await warnAboutOfflineConnectorServers();
}
// unrecognized combination of options or no options
Expand Down

0 comments on commit e5b8218

Please sign in to comment.