Skip to content

Commit

Permalink
Attempt reading from signal topic
Browse files Browse the repository at this point in the history
  • Loading branch information
thburnett committed Dec 18, 2024
1 parent 6d84966 commit e8548c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ebms-provider/src/main/kotlin/no/nav/emottak/ebms/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ fun main() = SuspendApp {
this.maxChunkSize = 100000
})

if (getEnvVar("ASYNC_RECEIVER", "false").toBoolean()) {
if (getEnvVar("ASYNC_RECEIVER", "true").toBoolean()) {
log.debug("Starting signal message receiver")
SignalReceiver(config.kafka).schedule()
}

Expand Down

0 comments on commit e8548c9

Please sign in to comment.