Skip to content

Commit

Permalink
Forsøk rekjør task neste dag ved dødsfallhendelse uten dødsdato (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
stigebil authored Oct 20, 2023
1 parent 3d51470 commit 185c1ae
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ import no.nav.familie.kontrakter.felles.personopplysning.SIVILSTAND.GIFT
import no.nav.familie.prosessering.AsyncTaskStep
import no.nav.familie.prosessering.TaskStepBeskrivelse
import no.nav.familie.prosessering.domene.Task
import no.nav.familie.prosessering.error.RekjørSenereException
import org.slf4j.Logger
import org.slf4j.LoggerFactory
import org.springframework.stereotype.Service
import java.time.LocalDate
import java.time.LocalDateTime
import java.time.YearMonth
import java.time.format.DateTimeFormatter
import java.time.format.FormatStyle
Expand Down Expand Up @@ -73,7 +75,10 @@ class VurderLivshendelseTask(
secureLog.info("dødsfallshendelse person følselsdato = ${pdlPersonData.fødsel.firstOrNull()}")
if (pdlPersonData.dødsfall.firstOrNull()?.dødsdato == null) {
secureLog.info("Har mottatt dødsfallshendelse uten dødsdato $pdlPersonData")
error("Har mottatt dødsfallshendelse uten dødsdato")
throw RekjørSenereException(
årsak = "Har mottatt dødsfallshendelse uten dødsdato",
triggerTid = LocalDateTime.now().plusDays(1),
)
}

val berørteBrukereIBaSak = finnBrukereBerørtAvDødsfallEllerUtflyttingHendelseForIdent(personIdent)
Expand Down

0 comments on commit 185c1ae

Please sign in to comment.