Radim Vansa created ISPN-4220:
---------------------------------
Summary: RemoteCacheManager.getCache may ignore the forceReturnValue flag
Key: ISPN-4220
URL:
https://issues.jboss.org/browse/ISPN-4220
Project: Infinispan
Issue Type: Bug
Reporter: Radim Vansa
Assignee: Mircea Markus
{code}
RemoteCacheManager manager = ...;
Cache noReturnCache = manager.getCache("foo", false);
Cache returnValueCache = manager.getCache("foo", true);
{code}
The second returned cache will use forceReturnValue=false, although it was retrieved with
forceReturnValue=true. The reason is that caches are stored in a map by name, ignoring
this flag.
There should be two such maps. The question is what should getCache("foo")
return if previously only getCache("foo", true) was called.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira