From 47a450ccb16cb471e2105fd42a77e3b69166debc Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 14 Aug 2025 13:58:55 +0200 Subject: [PATCH] refactoring(Gateway Health Indicator implementieren) TODO-Roadmap.md 1.2 Health Check Verbesserungen --- .../infrastructure/gateway/health/GatewayHealthIndicator.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } }