Description
public static Configuration createConfFromByteString(ByteString byteString) throws IOException { ... InflaterInputStream uncompressIs = new InflaterInputStream(byteString.newInput()); DAGProtos.ConfigurationProto confProto = DAGProtos.ConfigurationProto.parseFrom(uncompressIs);
InflaterInputStream is never closed, this will get eventually collected - but the off-heap buffers for Inflater leaks temporarily.