Skip to content

Commit

Permalink
DMP-4801 Fixing DAR notification for closed cases (#2626)
Browse files Browse the repository at this point in the history
  • Loading branch information
davet1985 authored Feb 20, 2025
1 parent 1408092 commit 63caf33
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ public void notifyDarPc(DarNotifyApplicationEvent event) throws DarNotifyError {
List<String> openCaseNumbers = caseRepository.findOpenCaseNumbers(dartsEvent.getCourthouse(), dartsEvent.getCaseNumbers());
if (openCaseNumbers.isEmpty()) {
log.info("DarNotify sending for closed case: event_id={}, courthouse={}",
DataUtil.toUpperCase(dartsEvent.getCourthouse()),
event.getDartsEvent().getEventId());
event.getDartsEvent().getEventId(),
DataUtil.toUpperCase(dartsEvent.getCourthouse()));
}

darNotifyAsyncHelper.notifyDarPcAsync(event, openCaseNumbers);
darNotifyAsyncHelper.notifyDarPcAsync(event, dartsEvent.getCaseNumbers());
}


Expand Down

0 comments on commit 63caf33

Please sign in to comment.