|
@@ -2,7 +2,6 @@ package cn.iocoder.yudao.framework.tenant.core.redis;
|
|
|
|
|
|
import cn.iocoder.yudao.framework.tenant.core.context.TenantContextHolder;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.jetbrains.annotations.NotNull;
|
|
|
import org.springframework.cache.Cache;
|
|
|
import org.springframework.data.redis.cache.RedisCacheConfiguration;
|
|
|
import org.springframework.data.redis.cache.RedisCacheManager;
|
|
@@ -24,7 +23,7 @@ public class TenantRedisCacheManager extends RedisCacheManager {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Cache getCache(@NotNull String name) {
|
|
|
+ public Cache getCache(String name) {
|
|
|
// 如果开启多租户,则 name 拼接租户后缀
|
|
|
if (!TenantContextHolder.isIgnore()
|
|
|
&& TenantContextHolder.getTenantId() != null) {
|