From 480e76466fb87e5cb14ecc268e211e124b204ec1 Mon Sep 17 00:00:00 2001 From: Kangmin Date: Wed, 8 Nov 2023 12:12:32 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20(main)=20redis=20property=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/team/sfe/server/global/redis/RedisProperties.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/team/sfe/server/global/redis/RedisProperties.kt b/src/main/kotlin/team/sfe/server/global/redis/RedisProperties.kt index aad630a..6a09c84 100644 --- a/src/main/kotlin/team/sfe/server/global/redis/RedisProperties.kt +++ b/src/main/kotlin/team/sfe/server/global/redis/RedisProperties.kt @@ -2,7 +2,7 @@ package team.sfe.server.global.redis import org.springframework.boot.context.properties.ConfigurationProperties -@ConfigurationProperties(prefix = "spring.redis") +@ConfigurationProperties(prefix = "spring.redis.data") data class RedisProperties( val host: String, val port: Int