Skip to content

Commit d3db4fa

Browse files
authoredFeb 28, 2025··
Legger til callId når vi kaster feil (#5119)
Favorkort: https://favro.com/organization/98c34fb974ce445eac854de0/1844bbac3b6605eacc8f5543?card=NAV-24416 Vi legger til nytt felt callId i Feil, som da propageres videre opp til frontend.
1 parent e76b797 commit d3db4fa

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed
 

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<prosessering.version>2.20250219093533_62416e5</prosessering.version>
2727
<felles.version>3.20250225161902_197977b</felles.version>
2828
<eksterne-kontrakter-bisys.version>2.0_20230214104704_706e9c0</eksterne-kontrakter-bisys.version>
29-
<felles-kontrakter.version>3.0_20250224083824_7fcdc47</felles-kontrakter.version>
29+
<felles-kontrakter.version>3.0_20250226115003_49b0dfa</felles-kontrakter.version>
3030
<familie.kontrakter.saksstatistikk>2.0_20230214104704_706e9c0</familie.kontrakter.saksstatistikk>
3131
<familie.kontrakter.stønadsstatistikk>2.0_20241209130157_6873c2d</familie.kontrakter.stønadsstatistikk>
3232
<utbetalingsgenerator.version>1.0_20250206122712_9ec24df</utbetalingsgenerator.version>

‎src/main/kotlin/no/nav/familie/ba/sak/common/Feil.kt

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ package no.nav.familie.ba.sak.common
33
import com.fasterxml.jackson.annotation.JsonInclude
44
import com.fasterxml.jackson.annotation.JsonPropertyOrder
55
import no.nav.familie.ba.sak.kjerne.autovedtak.satsendring.SatsendringSvar
6+
import no.nav.familie.log.mdc.MDCConstants
7+
import org.slf4j.MDC
68
import org.springframework.http.HttpStatus
79
import java.time.LocalDateTime
810
import kotlin.contracts.ExperimentalContracts
@@ -14,6 +16,7 @@ open class Feil(
1416
open val httpStatus: HttpStatus = HttpStatus.OK,
1517
open val throwable: Throwable? = null,
1618
override val cause: Throwable? = throwable,
19+
open val callId: String? = MDC.get(MDCConstants.MDC_CALL_ID),
1720
) : RuntimeException(message)
1821

1922
open class FunksjonellFeil(
@@ -22,6 +25,7 @@ open class FunksjonellFeil(
2225
open val httpStatus: HttpStatus = HttpStatus.OK,
2326
open val throwable: Throwable? = null,
2427
override val cause: Throwable? = throwable,
28+
open val callId: String? = MDC.get(MDCConstants.MDC_CALL_ID),
2529
) : RuntimeException(melding)
2630

2731
class VilkårFeil(

‎src/main/kotlin/no/nav/familie/ba/sak/common/RessursUtils.kt

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ object RessursUtils {
9090
Ressurs.failure(
9191
frontendFeilmelding = feil.frontendFeilmelding,
9292
errorMessage = feil.message.toString(),
93+
callId = feil.callId,
9394
),
9495
)
9596
}

0 commit comments

Comments
 (0)
Please sign in to comment.