xls update

This commit is contained in:
gowthaman.b 2024-03-20 14:58:54 +05:30
parent 38c6a32114
commit 9aadfbbd24

View File

@ -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")
}
}