Potential issue in HS6 migration guide

The migration guide reads “fullTextSession.purge(entityType, id) is equivalent to searchSession.indexingPlan().purge(entityType, id)”. However this will not compile with a cannot resolve method error. I believe it should instead be “searchSession.indexingPlan().purge(entityType, id, null)”.

Please correct me if I am wrong, or if this is not the right place to raise this issue.

You’re right, it should be purge(entityType, id, null).

Thanks for reporting this, I’ll fix it.