Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
ghx-label-12
Description
ParallelFileMetadataLoader.loaders_ became a Map, but at one place we still treat it as a List:
LOG.error(logPrefix_ + " encountered an error loading data for path " + loaders_.get(i).getPartDir(), e);
'i' is an integer, while the loaders_'s key type is Path.
Unfortunately the code compiles which means we get a NullPointerException for this statement.