-
Notifications
You must be signed in to change notification settings - Fork 45
4.0.1 redis fix #166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: cbrelease-4.0.1
Are you sure you want to change the base?
4.0.1 redis fix #166
Conversation
karthik-tarento
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@juhiagl8 -- refer the comments
| public SBApiResponse deleteCache() throws Exception { | ||
| SBApiResponse response = new SBApiResponse(Constants.API_REDIS_DELETE); | ||
| boolean res = redisCache.deleteAllCBExtKey(); | ||
| boolean res = redisCache.deleteAllKey(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just keep the old name - do not create confusion -- deleteAllKey sounds dangerous.
pom.xml
Outdated
| <dependency> | ||
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-starter-data-redis</artifactId> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>io.lettuce</groupId> | ||
| <artifactId>lettuce-core</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why we need this ?
pom.xml
Outdated
| <dependency> | ||
| <groupId>org.apache.commons</groupId> | ||
| <artifactId>commons-pool2</artifactId> | ||
| <version>2.11.1</version> | ||
| </dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This also seems unnecessary.
No description provided.