Skip to content

Commit

Permalink
Setter ApplicationState initially til false, for å ikke få false posi…
Browse files Browse the repository at this point in the history
…tives under oppstart
  • Loading branch information
inavga committed Nov 27, 2024
1 parent 576d00a commit ca51fba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/no/nav/pdfgen/Application.kt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ fun Application.module() {
}

data class ApplicationState(
var alive: Boolean = true,
var ready: Boolean = true,
var alive: Boolean = false,
var ready: Boolean = false,
)

0 comments on commit ca51fba

Please sign in to comment.