Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.1.0
-
None
-
Reviewed
Description
We've seen sometimes there is NPE in AllocationTagsManager
private void removeTagFromInnerMap(Map<String, Long> innerMap, String tag) { Long count = innerMap.get(tag); if (count > 1) { // NPE!! ...
it seems AllocationTagsManager#removeContainer somehow gets called more than once for a same container.