]
Tristan Tarrant reassigned ISPN-9150:
-------------------------------------
Assignee: William Burns
Method RemoteCache.entrySet() works incorrecly
----------------------------------------------
Key: ISPN-9150
URL:
https://issues.jboss.org/browse/ISPN-9150
Project: Infinispan
Issue Type: Bug
Affects Versions: 9.2.1.Final
Environment: # Cluster contains 2 hosts (each host have one instance of
Infinispan)
# Configuration have cache "Models". The cache have 2 key owners and 2
entities
Reporter: Sergey Chernolyas
Assignee: William Burns
Method RemoteCache.entrySet() returns empty stream. Method RemoteCache.retrieveEntries
works correctly in same time
But if I do :
{code:java}
System.out.println(modelRemoteCache.entrySet().stream().collect(Collectors.toSet()).size());
modelRemoteCache.entrySet().forEach(longModelEntry -> {
System.out.println(":"+longModelEntry.getKey()+":"+longModelEntry.getValue());
});
{code}
First row show size 0. But method "entrySet" will work correctly.