From 1effd3723fc2d0d5175e305c17107b4d5a768845 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Thu, 20 Jul 2023 22:12:57 +0900 Subject: [PATCH] Correct description of overrides for spring.redis.url See gh-36477 --- .../boot/autoconfigure/data/redis/RedisProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/redis/RedisProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/redis/RedisProperties.java index 89cb977a62..b767cfa518 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/redis/RedisProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/redis/RedisProperties.java @@ -41,7 +41,7 @@ public class RedisProperties { private int database = 0; /** - * Connection URL. Overrides host, port, and password. User is ignored. Example: + * Connection URL. Overrides host, port, username, and password. Example: * redis://user:password@example.com:6379 */ private String url;