Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
f Logg feil hvis vi får en INSERT-melding med ARBS eller IARBS - dett…
Browse files Browse the repository at this point in the history
…e skal ikke skje for løpende hendelser
  • Loading branch information
marenger committed Feb 20, 2023
1 parent 0e10872 commit 0a69561
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ class FormidlingsgruppeMottakService(

if (formidlingsgruppeEndretEvent.operation != Operation.UPDATE) {
logger.info("Forkaster melding som ikke er UPDATE, men lagrer for ettertid - $formidlingsgruppeEndretEvent")
if (formidlingsgruppeEndretEvent.formidlingsgruppe.kode != "ISERV") {
logger.error("Mottok en INSERT-melding med formidlingsgruppe ${formidlingsgruppeEndretEvent.formidlingsgruppe} - vi skal kun få INSERT med ISERV")
}
formidlingsgruppeRepository.lagre(formidlingsgruppeEndretEvent)
return
}
Expand Down

0 comments on commit 0a69561

Please sign in to comment.