fix(auth): change InternalAuthFilter to use @Singleton and add HTTP tests for secret validation
Build & Test (NowChessSystems) TeamCity build failed

This commit is contained in:
2026-05-03 17:27:30 +02:00
parent 33e5017f51
commit c08d5303eb
3 changed files with 74 additions and 4 deletions
@@ -186,8 +186,11 @@ class InstanceHeartbeatService:
)
val json = mapper.writeValueAsString(metadata)
reactiveRedis.value(classOf[String]).setex(key, 5L, json)
.subscribe().`with`(
reactiveRedis
.value(classOf[String])
.setex(key, 5L, json)
.subscribe()
.`with`(
_ => (),
(ex: Throwable) => log.warnf(ex, "Failed to refresh Redis heartbeat"),
)