Skip to content

Commit a3cf8da

Browse files
authored
Bump common kafka og spesifiser avro deps eksplisitt, siden avro nå er optional i common kafka (#921)
* Bump common kafka og spesifiser avro deps eksplisitt, siden avro nå er optional i common kafka * Debug log for å verifisere at avro melding blir sendt
1 parent 22f6bf1 commit a3cf8da

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

build.gradle.kts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11

22
val spring_boot_version = "3.4.3"
3-
val common_version = "3.2025.01.14_14.19-79b3041cae56"
3+
val common_version = "3.2025.03.06_11.40-cbc2a0783de9"
44
val dab_common_version = "2024.11.14-10.46.174740baf5c7"
55
val poao_tilgang_version = "2025.02.18_14.13-ac4265f31ef3"
66
val shedlock_version = "6.3.0"
7+
val avroVersion = "1.12.0"
8+
val confluentKafkaAvroVersion = "7.9.0"
79
val _version: String by project
810

911
plugins {
@@ -141,6 +143,10 @@ dependencies {
141143
implementation("net.javacrumbs.shedlock:shedlock-provider-jdbc-template:$shedlock_version")
142144
implementation("net.javacrumbs.shedlock:shedlock-spring:$shedlock_version")
143145
implementation("no.nav.common:kafka:$common_version")
146+
implementation("org.apache.avro:avro:$avroVersion") // skriver avro til pto.deling-av-stilling-fra-nav-forespurt-v2
147+
implementation("io.confluent:kafka-avro-serializer:$confluentKafkaAvroVersion") {
148+
exclude(group = "io.swagger.core.v3")
149+
}
144150
implementation("no.nav.common:token-client:$common_version")
145151
implementation("no.nav.common:auth:$common_version")
146152
implementation("no.nav.common:log:$common_version")

src/main/java/no/nav/veilarbaktivitet/stilling_fra_nav/StillingFraNavProducerClient.java

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ private void sendRespons(TilstandEnum tilstand,
9999
delingAvCvRespons.setKanIkkeOppretteBegrunnelse(kanIkkeOppretteBegrunnelse);
100100
ProducerRecord<String, DelingAvCvRespons> stringDelingAvCvResponsProducerRecord = new ProducerRecord<>(topicUt, delingAvCvRespons.getBestillingsId(), delingAvCvRespons);
101101
secureLog.info("StillingFraNavProducerClient.sendRespons:{}", stringDelingAvCvResponsProducerRecord);
102+
log.debug("StillingFraNavProducerClient sender oppdatering på bestillingsId: {} på topic: {}", delingAvCvRespons.getBestillingsId(), topicUt);
102103
producerClient.send(stringDelingAvCvResponsProducerRecord);
103104
}
104105

0 commit comments

Comments
 (0)