Description
OakDirectory#deleteFile registers a blob as deleted for actively purged even if blob.getContentIdentity is null [0]. That leads to active purge trying to purge an inlined blob and hitting a bening warn in the log (and of course a perf issue to "find" that the blob couldn't really be purged)
String blobId = b.getContentIdentity(); if (blobId == null) { blobId = b.toString(); } blobDeletionCallback.deleted(blobId, Lists.newArrayList(definition.getIndexPath(), dataNodeName, name));