Skip to content

Commit

Permalink
Fix: Fjerner runBlocking og gjør metoden suspend slik at tokenet er t…
Browse files Browse the repository at this point in the history
…ilgjengelig i coroutine-context
  • Loading branch information
baskevold committed Jan 18, 2024
1 parent 06b8da5 commit d8a3c13
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class OppgaveKoTjeneste(
) {
private val log = LoggerFactory.getLogger(OppgaveKoTjeneste::class.java)

fun hentOppgaverFraKø(
suspend fun hentOppgaverFraKø(
oppgaveKoId: Long,
ønsketAntallSaker: Int,
): List<GenerellOppgaveV3Dto> {
Expand All @@ -59,10 +59,8 @@ class OppgaveKoTjeneste(
continue
}

val harTilgangTilLesSak =
runBlocking { //TODO: harTilgangTilLesSak riktig PEP-spørring, eller bør det være likhetssjekk?
val harTilgangTilLesSak = //TODO: harTilgangTilLesSak riktig PEP-spørring, eller bør det være likhetssjekk?
pepClient.harTilgangTilLesSak(oppgave.hentVerdi("saksnummer")!!, oppgave.hentVerdi("aktorId")!!)
}
if (!harTilgangTilLesSak) {
continue
}
Expand Down

0 comments on commit d8a3c13

Please sign in to comment.