Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.0
Description
GridCacheLocalFullApiSelfTest.testGetAllWithNulls
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);
After getAll, entry with "key1" will be in heap map, it is dependent of order in collection for getAll();