Skip to content

Commit

Permalink
post -> password
Browse files Browse the repository at this point in the history
  • Loading branch information
programmerDH-github committed Apr 11, 2024
1 parent 38367ec commit d33fc37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/bside/BSIDE/config/RedisConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class RedisConfig {

public RedisConfig(@Value("${spring.data.redis.host}") final String host,
@Value("${spring.data.redis.port}") final int port,
@Value("${spring.data.redis.port}") final String password) {
@Value("${spring.data.redis.password}") final String password) {
this.host = host;
this.port = port;
this.password = password;
Expand Down

0 comments on commit d33fc37

Please sign in to comment.