Browse Source

Merge branch '6.1.x'

pull/33390/head
Simon Baslé 2 years ago
parent
commit
5e72ee36e2
  1. 3
      spring-context/src/main/java/org/springframework/cache/interceptor/CacheAspectSupport.java

3
spring-context/src/main/java/org/springframework/cache/interceptor/CacheAspectSupport.java vendored

@ -524,6 +524,9 @@ public abstract class CacheAspectSupport extends AbstractCacheInvoker @@ -524,6 +524,9 @@ public abstract class CacheAspectSupport extends AbstractCacheInvoker
(value != null ? CompletableFuture.completedFuture(unwrapCacheValue(value)) : null),
invoker, method, contexts));
}
else {
continue;
}
}
if (this.reactiveCachingHandler != null) {
Object returnValue = this.reactiveCachingHandler.findInCaches(

Loading…
Cancel
Save