diff --git a/infrastructure/gateway/src/main/kotlin/at/mocode/infrastructure/gateway/health/GatewayHealthIndicator.kt b/infrastructure/gateway/src/main/kotlin/at/mocode/infrastructure/gateway/health/GatewayHealthIndicator.kt index 74c77956..15d1e691 100644 --- a/infrastructure/gateway/src/main/kotlin/at/mocode/infrastructure/gateway/health/GatewayHealthIndicator.kt +++ b/infrastructure/gateway/src/main/kotlin/at/mocode/infrastructure/gateway/health/GatewayHealthIndicator.kt @@ -134,7 +134,7 @@ class GatewayHealthIndicator( 503 -> "DOWN" else -> "ERROR" } - } catch (exception: Exception) { + } catch (_: Exception) { "ERROR" } }