Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
9df0992b
Commit
9df0992b
authored
Jul 13, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish "Align with breaking API changes in RedisCacheManager"
Closes gh-9734
parent
d22cd0cc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
RedisCacheConfiguration.java
...ork/boot/autoconfigure/cache/RedisCacheConfiguration.java
+0
-1
CacheAutoConfigurationTests.java
...boot/autoconfigure/cache/CacheAutoConfigurationTests.java
+3
-3
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/RedisCacheConfiguration.java
View file @
9df0992b
...
...
@@ -57,7 +57,6 @@ class RedisCacheConfiguration {
@Bean
public
RedisCacheManager
cacheManager
(
RedisConnectionFactory
redisConnectionFactory
)
{
RedisCacheManagerBuilder
builder
=
RedisCacheManager
.
builder
(
redisConnectionFactory
);
List
<
String
>
cacheNames
=
this
.
cacheProperties
.
getCacheNames
();
if
(!
cacheNames
.
isEmpty
())
{
...
...
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/cache/CacheAutoConfigurationTests.java
View file @
9df0992b
...
...
@@ -283,9 +283,9 @@ public class CacheAutoConfigurationTests {
RedisCacheManager
cacheManager
=
validateCacheManager
(
context
,
RedisCacheManager
.
class
);
assertThat
(
cacheManager
.
getCacheNames
()).
isEmpty
();
org
.
springframework
.
data
.
redis
.
cache
.
RedisCacheConfiguration
configuration
=
(
org
.
springframework
.
data
.
redis
.
cache
.
RedisCacheConfiguration
)
new
DirectFieldAccessor
(
cacheManager
).
getPropertyValue
(
"defaultCacheConfig"
);
assertThat
(
configuration
.
usePrefix
()).
isTrue
();
assertThat
(((
org
.
springframework
.
data
.
redis
.
cache
.
RedisCacheConfiguration
)
new
DirectFieldAccessor
(
cacheManager
).
getPropertyValue
(
"defaultCacheConfig"
))
.
usePrefix
()).
isTrue
();
});
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment