We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e104662 commit 084ee64Copy full SHA for 084ee64
app/main/api/Routes.kt
@@ -252,7 +252,7 @@ private suspend fun hentMedium(
252
samordningsId = it.samordningsId,
253
opphorsAarsak = it.opphorsAarsak
254
)
255
- }
+ }.filter { it.status != "INAKT" }
256
257
}.onFailure { ex ->
258
prometheus.httpFailedCallCounter(consumerTag, call.request.path()).increment()
@@ -350,7 +350,7 @@ private suspend fun hentMaksimum(
350
351
},
352
353
- })
+ }.filter { it.status != "INAKT" })
354
355
356
logger.error("Klarte ikke hente vedtak fra intern API", ex)
0 commit comments