Anilkumar Gingade created GEODE-2661:
----------------------------------------
Summary: CacheListener gets invoked when an non-existent entry is
removed using removeAll
Key: GEODE-2661
URL: https://issues.apache.org/jira/browse/GEODE-2661
Project: Geode
Issue Type: Bug
Components: regions
Reporter: Anilkumar Gingade
When a non-existing entry is removed using removeAll from PartitionedRegion
(need to verify this on replicated), the CacheListener's aftrerDestroy callback
method gets invoked. The afterDestroy should not be invoked for entry which is
not present.
How to reproduce.
region.put (k1, v1)
region.put (k2, v2)
List keys= Arrays.asList("k1", "k2", "k8");
region.removeAll(l);
The afterDestroy call back will be invoked for k8.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)