Skip to content

Commit e5f7ffb

Browse files
committed
fix: 기본값제거
1 parent 5751197 commit e5f7ffb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/example/gridgestagram/config/RedisConfig.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@
2525
@Slf4j
2626
public class RedisConfig {
2727

28-
@Value("${spring.redis.host:localhost}")
28+
@Value("${spring.redis.host}")
2929
private String host;
3030

31-
@Value("${spring.redis.port:6379}")
31+
@Value("${spring.redis.port}")
3232
private int port;
3333

34-
@Value("${spring.redis.timeout:3000}")
34+
@Value("${spring.redis.timeout}")
3535
private int timeout;
3636

37-
@Value("${spring.redis.password:}")
37+
@Value("${spring.redis.password}")
3838
private String password;
3939

4040
@Bean

0 commit comments

Comments
 (0)