You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cached Flux (or any Publisher) with multiple values should return a Flux containing the same values. (Or fail instantly, if this should not be supported.)
Actual Behaviour
Cached Flux returns a Flux with the values wrapped in a List.
Steps To Reproduce
Return Flux with multiple values from a cached method
@Cacheable(cacheNames = ["sample"])
open fun flux(first: Int): Flux<Int> = Flux.just(first, first + 1)
Expected Behavior
Cached
Flux
(or anyPublisher
) with multiple values should return aFlux
containing the same values. (Or fail instantly, if this should not be supported.)Actual Behaviour
Cached
Flux
returns aFlux
with the values wrapped in aList
.Steps To Reproduce
Flux
with multiple values from a cached methodEnvironment Information
No response
Example Application
https://github.com/tPeltola/mncache/tree/cache-flux-multiple
Version
3.7.1
The text was updated successfully, but these errors were encountered: