From 9aadfbbd2441bb8de5ee2d1fe615e560779a16db Mon Sep 17 00:00:00 2001 From: "gowthaman.b" Date: Wed, 20 Mar 2024 14:58:54 +0530 Subject: [PATCH] xls update --- src/main/kotlin/com/restapi/domain/db.kt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/com/restapi/domain/db.kt b/src/main/kotlin/com/restapi/domain/db.kt index d4b4456..0dc1fa6 100644 --- a/src/main/kotlin/com/restapi/domain/db.kt +++ b/src/main/kotlin/com/restapi/domain/db.kt @@ -211,7 +211,13 @@ object Session { return "$entity-${"$s".padStart(10, '0')}" } - val redis = JedisPooled(appConfig.redisUri().getOrDefault("redis://localhost:6739/0")) + val redisUri = appConfig.redisUri().getOrDefault("redis://localhost:6739/0") + val redis = JedisPooled(redisUri) + + init { + + logger.warn("RedisUri - $redisUri") + } }