[jira] [Created] (IGNITE-6307) If getAll() fails with NPE, onHeap entry is not removed, for local cache

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (IGNITE-6307) If getAll() fails with NPE, onHeap entry is not removed, for local cache

Anton Vinogradov (Jira)
Dmitriy Govorukhin created IGNITE-6307:
------------------------------------------

             Summary: If getAll() fails with NPE, onHeap entry is not removed, for local cache
                 Key: IGNITE-6307
                 URL: https://issues.apache.org/jira/browse/IGNITE-6307
             Project: Ignite
          Issue Type: Bug
    Affects Versions: 2.0
            Reporter: Dmitriy Govorukhin
             Fix For: 2.3


GridCacheLocalFullApiSelfTest.testGetAllWithNulls

{code}
    final Set<String> c = new HashSet<>();

        c.add("key1");
        c.add(null);

        GridTestUtils.assertThrows(log, new Callable<Void>() {
            @Override public Void call() throws Exception {
                cache.getAll(c);

                return null;
            }
        }, NullPointerException.class, null);
{code}

After getAll, entry with "key1" will be in heap map, it is dependent of order in collection for getAll();



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)