Merge pull request #37491 from esperar

* pr/37491:
  Use more idiomatic Kotlin in doc example

Closes gh-37491
This commit is contained in:
Moritz Halbritter 2023-09-21 16:39:55 +02:00
commit 81efbc7a7b

View File

@ -33,17 +33,12 @@ class MyHealthMetricsExportConfiguration(registry: MeterRegistry, healthEndpoint
} }
private fun getStatusCode(health: HealthEndpoint): Int { private fun getStatusCode(health: HealthEndpoint): Int {
val status = health.health().status return when (health.health().status) {
if (Status.UP == status) { Status.UP -> 3
return 3 Status.OUT_OF_SERVICE -> 2
} Status.DOWN -> 1
if (Status.OUT_OF_SERVICE == status) { else -> 0
return 2 }
}
if (Status.DOWN == status) {
return 1
}
return 0
} }
} }