Skip to content

Commit

Permalink
fix: from list to set
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescoDiTonno-BVT committed Feb 12, 2025
1 parent 5da96e6 commit 36711f6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ class DeadLetterDataProvider(
deadLetterRepository.countAllDeadLetterEventInTimeRangeWithExludeStatuses(
startTime = startDate,
endTime = endDate,
ecommerceStatusesToExclude = eCommerceStatuses,
npgStatusesToExclude = npgStatuses
ecommerceStatusesToExclude = eCommerceStatuses.toSet(),
npgStatusesToExclude = npgStatuses.toSet()
)
} else {
logger.info("Counting all dead letter events")
Expand Down

0 comments on commit 36711f6

Please sign in to comment.