Skip to content

Commit

Permalink
Endre navn til FEILET_OG_AUTOMATISK_REKJØRT
Browse files Browse the repository at this point in the history
  • Loading branch information
halvorbmundal committed Feb 19, 2024
1 parent 0dbde4b commit 0a2428c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package no.nav.familie.prosessering.domene

enum class Loggtype {
FERDIG, FEILET, PLUKKET, BEHANDLER, KLAR_TIL_PLUKK, UBEHANDLET, AVVIKSHÅNDTERT, MANUELL_OPPFØLGING, KOMMENTAR, FEILET_AUTOMATISK_REKJØRT
FERDIG, FEILET, PLUKKET, BEHANDLER, KLAR_TIL_PLUKK, UBEHANDLET, AVVIKSHÅNDTERT, MANUELL_OPPFØLGING, KOMMENTAR, FEILET_OG_AUTOMATISK_REKJØRT
}
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class TaskService internal constructor(
taskLoggRepository.save(
TaskLogg(
taskId = task.id,
type = if (harTaskFeiletMindreEnnMaksAntallFeil) Loggtype.FEILET_AUTOMATISK_REKJØRT else Loggtype.FEILET,
type = if (harTaskFeiletMindreEnnMaksAntallFeil) Loggtype.FEILET_OG_AUTOMATISK_REKJØRT else Loggtype.FEILET,
melding = feilmelding
)
)
Expand Down

0 comments on commit 0a2428c

Please sign in to comment.