Skip to content

Commit

Permalink
Merge pull request HicServices#2109 from HicServices/bugfix/rdmp-152-…
Browse files Browse the repository at this point in the history
…simplefileextractor

fix simple file extractor check error
  • Loading branch information
rdteviotdale authored Jan 13, 2025
2 parents 15ab3a5 + 974b7af commit 3034657
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Build on and target .Net 9 rather than 8
- Simplify DB Patching Interface
- Fix issue with Simple File Extractor pipeline component checking

## [8.4.2] - 2024-12-18

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,6 @@ public override void Check(ICheckNotifier notifier)
notifier.OnCheckPerformed(new CheckEventArgs(
$"PerPatient is false but Pattern {Pattern} contains token $p. This token will never be matched in MoveAll mode",
CheckResult.Fail));

try
{
notifier.OnCheckPerformed(new CheckEventArgs($"Output path is:{GetDestinationDirectory()}",
CheckResult.Success));
}
catch (Exception ex)
{
throw new Exception(
"Unable to to determine output directory from 'OutputDirectoryName'. Perhaps pattern is bad", ex);
}
}

protected override void MoveFiles(ExtractGlobalsCommand command, IDataLoadEventListener listener,
Expand Down

0 comments on commit 3034657

Please sign in to comment.