Skip to content

Commit

Permalink
HOTFIX: 레디스 환경변수 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyxklee committed Jan 7, 2025
1 parent 105d4f2 commit f8382e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/gachtaxi/global/config/RedisConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ public class RedisConfig {

public static final String WILD_CARD = "*";

@Value("${redis.host:localhost}")
@Value("${spring.data.redis.host:localhost}")
private String host;

@Value("${redis.port:6379}")
@Value("${spring.data.redis.port:6379}")
private int port;

@Value("${redis.password:}")
@Value("${spring.data.redis.password:}")
private String password;

@Value("${chat.topic}")
Expand Down

0 comments on commit f8382e2

Please sign in to comment.