Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Setter ned skedulertoppgave hyppighet for overføring av arbeidssøkero…
Browse files Browse the repository at this point in the history
…pplysninger til 60s
  • Loading branch information
maccyber committed Feb 5, 2024
1 parent c1c0b31 commit bf7f6aa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class OpplysningMottattScheduler(
private val opplysningerMottattProducer: OpplysningerMottattProducer,
private val unleashClient: Unleash,
) {
@Scheduled(fixedDelay = 500, initialDelay = 10_000)
@Scheduled(fixedDelay = 60_000, initialDelay = 10_000)
fun start() {
if (!leaderElectionClient.isLeader) {
return
Expand All @@ -27,7 +27,7 @@ class OpplysningMottattScheduler(
return
}

val opplysningerOmArbeidssoekere = brukerRegistreringService.hentNesteOpplysningerOmArbeidssoker(500)
val opplysningerOmArbeidssoekere = brukerRegistreringService.hentNesteOpplysningerOmArbeidssoker(100)

if (opplysningerOmArbeidssoekere.isEmpty()) {
logger.info("Opplysninger om arbeidssøker: Fant ingen arbeidssøkeropplysninger som skal overføres")
Expand Down

0 comments on commit bf7f6aa

Please sign in to comment.