Skip to content

Commit 9fc92c5

Browse files
committed
Redis sentinel should respect database in url also
Signed-off-by: Yanming Zhou <[email protected]>
1 parent cc2fd42 commit 9fc92c5

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/redis/PropertiesRedisConnectionDetails.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public Sentinel getSentinel() {
7777

7878
@Override
7979
public int getDatabase() {
80-
return PropertiesRedisConnectionDetails.this.properties.getDatabase();
80+
return getStandalone().getDatabase();
8181
}
8282

8383
@Override

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/redis/PropertiesRedisConnectionDetailsTests.java

+13
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,22 @@ void sentinelIsConfigured() {
144144
RedisProperties.Sentinel sentinel = new RedisProperties.Sentinel();
145145
sentinel.setNodes(List.of("localhost:1111", "127.0.0.1:2222", "[::1]:3333"));
146146
this.properties.setSentinel(sentinel);
147+
this.properties.setDatabase(5);
147148
PropertiesRedisConnectionDetails connectionDetails = new PropertiesRedisConnectionDetails(this.properties);
148149
assertThat(connectionDetails.getSentinel().getNodes()).containsExactly(new Node("localhost", 1111),
149150
new Node("127.0.0.1", 2222), new Node("[::1]", 3333));
151+
assertThat(connectionDetails.getSentinel().getDatabase()).isEqualTo(5);
152+
}
153+
154+
@Test
155+
void sentinelDatabaseIsConfiguredFromUrl() {
156+
RedisProperties.Sentinel sentinel = new RedisProperties.Sentinel();
157+
sentinel.setNodes(List.of("localhost:1111", "127.0.0.1:2222", "[::1]:3333"));
158+
this.properties.setSentinel(sentinel);
159+
this.properties.setUrl("redis://example.com:1234/9999");
160+
this.properties.setDatabase(5);
161+
PropertiesRedisConnectionDetails connectionDetails = new PropertiesRedisConnectionDetails(this.properties);
162+
assertThat(connectionDetails.getSentinel().getDatabase()).isEqualTo(9999);
150163
}
151164

152165
}

0 commit comments

Comments
 (0)